Skip to content

Commit d937c01

Browse files
authored
Update ci.yml
1 parent 134d607 commit d937c01

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -270,13 +270,8 @@ jobs:
270270
271271
TESTS=($(echo $TESTS | tr -d '\n' | tr -s ' '))
272272
for suite in "${TESTS[@]}" ; do
273-
if [[ "$suite" == *"quota"* ]]; then
274-
echo -e "Currently running test with quota config: $suite\n"
275-
time nosetests-3.4 --with-xunit --xunit-file=integration-test-results/$suite.xml --with-marvin --marvin-config=setup/dev/advanced-with-quota-enabled.cfg test/integration/$suite.py -s -a tags=advanced,required_hardware=false --zone=Sandbox-simulator --hypervisor=simulator || true ;
276-
else
277-
echo -e "Currently running test: $suite\n"
278-
time nosetests-3.4 --with-xunit --xunit-file=integration-test-results/$suite.xml --with-marvin --marvin-config=setup/dev/advanced.cfg test/integration/$suite.py -s -a tags=advanced,required_hardware=false --zone=Sandbox-simulator --hypervisor=simulator || true ;
279-
fi
273+
echo -e "Currently running test: $suite\n"
274+
time nosetests-3.4 --with-xunit --xunit-file=integration-test-results/$suite.xml --with-marvin --marvin-config=setup/dev/advanced-with-quota-enabled.cfg test/integration/$suite.py -s -a tags=advanced,required_hardware=false --zone=Sandbox-simulator --hypervisor=simulator || true ;
280275
done
281276
282277
echo -e "Stopping Simulator, integration tests run completed\n"

0 commit comments

Comments
 (0)