CI: do not attempt to cd twice

I misunderstood how Travis CI works; it's not a subshell, it's something
which affects the other commands. Let's just run everything from the
top-level directory.
This commit is contained in:
Jan Kundrát
2019-07-04 00:27:10 +02:00
parent 31ea479d7f
commit a6ab8055b1

View File

@@ -11,7 +11,7 @@ install:
script:
- pytest --cov-report=xml --cov=gnpy
- rstcheck --ignore-roles cite --ignore-directives automodule --recursive --ignore-messages '(Duplicate explicit target name.*)' .
- cd examples; ./transmission_main_example.py
- cd examples; ./path_requests_run.py
- ./examples/transmission_main_example.py
- ./examples/path_requests_run.py
after_success:
- bash <(curl -s https://codecov.io/bash)