Don't re-run tests on deployment (#839)

By the time we get to the deployment step, we've already run these tests
dozens of times. We don't need to run them yet again at deploy time.
This commit is contained in:
Jonathan Wren 2020-02-08 18:33:28 -08:00
parent 4190494a4f
commit db6b0aa56c

View file

@ -131,6 +131,8 @@ jobs:
- poetry version "$TRAVIS_TAG" - poetry version "$TRAVIS_TAG"
- echo __version__ = \"$TRAVIS_TAG\" > jrnl/__version__.py - echo __version__ = \"$TRAVIS_TAG\" > jrnl/__version__.py
- poetry build - poetry build
script:
- echo "Deployment starting..."
deploy: deploy:
- provider: script - provider: script
script: poetry publish script: poetry publish