-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revised order of tests in Dockerfile
- Loading branch information
1 parent
610384b
commit ef63d14
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
cd python36 | ||
docker build --no-cache -t testdockerlinuxpython36 . | ||
docker run testdockerlinuxpython36 bash -c "cd pm4py-source-master/tests && python execute_tests.py" | ||
docker run testdockerlinuxpython36 bash -c "python -c \"import pm4py ; print(pm4py.__version__)\"" | ||
cd .. | ||
cd python37 | ||
docker build --no-cache -t testdockerlinuxpython37 . | ||
docker run testdockerlinuxpython37 bash -c "cd pm4py-source-master/tests && python execute_tests.py" | ||
docker run testdockerlinuxpython37 bash -c "python -c \"import pm4py ; print(pm4py.__version__)\"" | ||
cd .. | ||
cd python36 | ||
docker build --no-cache -t testdockerlinuxpython36 . | ||
docker run testdockerlinuxpython36 bash -c "cd pm4py-source-master/tests && python execute_tests.py" | ||
docker run testdockerlinuxpython36 bash -c "python -c \"import pm4py ; print(pm4py.__version__)\"" | ||
|