Skip to content

Commit 05729e1

Browse files
committed
add park environment and ops environment comments
1 parent 847a362 commit 05729e1

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

tox.ini

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ envlist =
1212
# linters :: Runs all linters over all source code.
1313
# linters-tests :: Runs all linters over all tests.
1414

15+
# Operational helper environments:
16+
# docs :: Builds Sphinx documentation.
17+
# serve-docs :: Starts local webserver to serve built documentation.
18+
# park :: Builds name-parking packages using pypi-parker.
19+
# build :: Builds source and wheel dist files.
20+
# test-release :: Builds dist files and uploads to testpypi pypirc profile.
21+
# release :: Builds dist files and uploads to pypi pypirc profile.
22+
1523
[testenv:base-command]
1624
commands = pytest --basetemp={envtmpdir} -l --cov dynamodb_encryption_sdk {posargs}
1725

@@ -231,6 +239,15 @@ deps =
231239
commands =
232240
python -m http.server {posargs}
233241

242+
# Release tooling
243+
[testenv:park]
244+
basepython = python3.6
245+
skip_install = true
246+
deps =
247+
pypi-parker
248+
setuptools
249+
commands = python setup.py park
250+
234251
# Release tooling
235252
[testenv:build]
236253
basepython = python3

0 commit comments

Comments
 (0)