Revert both commits that remove py-tests
continuous-integration/drone/push Build is passing Details

Revert "Remove test dependency too"

This reverts commit db12bb5db1.

Revert "Remove py-tests and pypi to speed up docker validation"

This reverts commit 9aa77b3739.
This commit is contained in:
IamTheFij 2020-01-10 16:08:15 -08:00
parent db12bb5db1
commit 1852e8c439
1 changed files with 3 additions and 3 deletions

View File

@ -3,10 +3,10 @@ def main(ctx):
pipelines = []
# Run tests
# pipelines += run_tests()
pipelines += run_tests()
# Add pypi push pipeline
# pipelines += push_to_pypi(ctx)
pipelines += push_to_pypi(ctx)
# Add docker push pipelines
pipelines += push_to_docker(ctx)
@ -160,7 +160,7 @@ def push_to_docker(ctx):
return [{
"kind": "pipeline",
"name": "push to docker",
# "depends_on": ["tests"],
"depends_on": ["tests"],
"workspace": get_workspace(),
"trigger": {
"event": ["tag", "push"],