-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add instructions on bootstrapping for tox
- Loading branch information
1 parent
2c0490b
commit 1f4a406
Showing
3 changed files
with
65 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Contributing to pysierraecg | ||
All contributions to the project will be considered for inclusion, simply submit a pull request! | ||
|
||
1. [Fork](https://github.com/sixlettervariables/sierra-ecg-tools/fork) the repository ([read more detailed steps](https://help.github.com/articles/fork-a-repo)). | ||
2. [Create a branch](https://help.github.com/articles/creating-and-deleting-branches-within-your-repository#creating-a-branch) | ||
3. Make and commit your changes | ||
4. Push your changes back to your fork. | ||
5. [Submit a pull request](https://github.com/sixlettervariables/sierra-ecg-tools/compare/) ([read more detailed steps](https://help.github.com/articles/creating-a-pull-request)). | ||
|
||
## Bootstrapping | ||
To bootstrap the environment: | ||
|
||
1. Create a virtual environment and activate it. | ||
1. `pip install -r bootstrap-requirements.txt` | ||
2. `pip-compile --extra=dev --output-file=dev-requirements.txt pyproject.toml` | ||
4. `pip-compile --output-file=requirements.txt pyproject.toml` | ||
|
||
You can now run `tox`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These are the minimum requirements to bootstrap building this library | ||
pip-tools>=7 | ||
tox>=4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters