Disable ACI tests when build under Docker
We need to figure out why they fail on our build fleet
This commit is contained in:
parent
000af18a1f
commit
3d558f6090
2 changed files with 10 additions and 1 deletions
|
@ -111,6 +111,7 @@ ADD . .
|
|||
# Run the tests
|
||||
ARG RUN_TESTS=true
|
||||
ENV RUN_TESTS ${RUN_TESTS}
|
||||
ENV RUN_ACI_TESTS False
|
||||
|
||||
RUN if [ "$RUN_TESTS" = true ]; then \
|
||||
TEST=true venv/bin/python -m unittest discover -f; \
|
||||
|
|
Reference in a new issue