summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2019-08-22 16:40:51 -0400
committerJason R. Coombs <jaraco@jaraco.com>2019-08-22 16:40:51 -0400
commit4baec898fdfef6da27653d21fdf223da10b13342 (patch)
treea26dbaa9f3302ea9e1c61ac07940a283afd02a99
parent20964edcfd5b35c6006bc6425a5587004ed76eec (diff)
downloadpytest-runner-4baec898fdfef6da27653d21fdf223da10b13342.tar.gz
Update docs to reflect changes to deployment.
-rw-r--r--skeleton.md22
1 files changed, 15 insertions, 7 deletions
diff --git a/skeleton.md b/skeleton.md
index 7249407..52b97f0 100644
--- a/skeleton.md
+++ b/skeleton.md
@@ -103,13 +103,7 @@ Relies a .flake8 file to correct some default behaviors:
## Continuous Integration
-The project is pre-configured to run tests in [Travis-CI](https://travis-ci.org) (.travis.yml). Any new project must be enabled either through their web site or with the `travis enable` command. In addition to running tests, an additional deploy stage is configured to automatically release tagged commits. The username and password for PyPI must be configured for each project using the `travis` command and only after the travis project is created. As releases are cut with [twine](https://pypi.org/project/twine), the two values are supplied through the `TWINE_USERNAME` and `TWINE_PASSWORD`. To configure the latter as a secret, run the following command:
-
-```
-echo "TWINE_PASSWORD={password}" | travis encrypt
-```
-
-Or disable it in the CI definition and configure it through the web UI.
+The project is pre-configured to run tests in [Travis-CI](https://travis-ci.org) (.travis.yml). Any new project must be enabled either through their web site or with the `travis enable` command.
Features include:
- test against Python 2 and 3
@@ -118,6 +112,14 @@ Features include:
Also provided is a minimal template for running under Appveyor (Windows).
+### Continuous Deployments
+
+In addition to running tests, an additional deploy stage is configured to automatically release tagged commits to PyPI using [API tokens](https://pypi.org/help/#apitoken). The release process expects an authorized token to be configured with Travis as the TWINE_PASSWORD environment variable. After the Travis project is created, configure the token through the web UI or with a command like the following (bash syntax):
+
+```
+TWINE_PASSWORD={token} travis env copy TWINE_PASSWORD
+```
+
## Building Documentation
Documentation is automatically built by [Read the Docs](https://readthedocs.org) when the project is registered with it, by way of the .readthedocs.yml file. To test the docs build manually, a tox env may be invoked as `tox -e build-docs`. Both techniques rely on the dependencies declared in `setup.cfg/options.extras_require.docs`.
@@ -127,3 +129,9 @@ In addition to building the sphinx docs scaffolded in `docs/`, the docs build a
## Cutting releases
By default, tagged commits are released through the continuous integration deploy stage.
+
+Releases may also be cut manually by invoking the tox environment `release` with the PyPI token set as the TWINE_PASSWORD:
+
+```
+TWINE_PASSWORD={token} tox -e release
+```