-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ReadMe to
tests
and tools
folders.
- Loading branch information
Showing
3 changed files
with
23 additions
and
7 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,5 @@ | ||
## Test suite | ||
|
||
The scripts here, along with the fixtures, constitute the test suite. | ||
Run them with `pytest` from the root folder. Or use the scripts | ||
`test.py` and `coverage.py` from the `tools` folder. |
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 @@ | ||
## Developer tools | ||
|
||
These are simple helper scripts to run the various dev tools, such as | ||
pyTest or Flit. See the doc-strings of the individual scripts for | ||
details. | ||
|
||
For local development, install the package in editable mode inside a | ||
dedicated virtual environment: `pip install --editable .[dev]`. | ||
|
||
|
||
### Releasing a new version | ||
|
||
* Bump version number in `meta.py`. | ||
* Add dedicated commit for the version bump. | ||
* Tag commit with version number, e.g. `git tag 1.0.0`. | ||
* Push to GitHub: `git push && git push --tags`. | ||
* Create GitHub release from tag and add release notes. | ||
* Publish to PyPI: `tools/publish.py`. |
This file was deleted.
Oops, something went wrong.