Skip to content
Snippets Groups Projects
Commit 4f3abf2c authored by Carl Mai's avatar Carl Mai
Browse files

removed allow_failure from some tests

parent e6559449
No related branches found
No related tags found
No related merge requests found
.git
.gitignore
.gitlab-ci.yaml .gitlab-ci.yaml
Dockerfile Dockerfile
README.md README.md
......
...@@ -38,7 +38,7 @@ test_genetic: ...@@ -38,7 +38,7 @@ test_genetic:
stage: test stage: test
tags: tags:
- dockered - dockered
allow_failure: true allow_failure: true # too random
script: script:
- docker pull $CONTAINER_TEST_IMAGE - docker pull $CONTAINER_TEST_IMAGE
- docker run $CONTAINER_TEST_IMAGE /ttc18/gradlew --no-daemon jastadd-mquat-solver-genetic:test - docker run $CONTAINER_TEST_IMAGE /ttc18/gradlew --no-daemon jastadd-mquat-solver-genetic:test
...@@ -47,11 +47,12 @@ test_aco: ...@@ -47,11 +47,12 @@ test_aco:
stage: test stage: test
tags: tags:
- dockered - dockered
allow_failure: true allow_failure: true # too random
script: script:
- docker pull $CONTAINER_TEST_IMAGE - docker pull $CONTAINER_TEST_IMAGE
- docker run $CONTAINER_TEST_IMAGE /ttc18/gradlew --no-daemon jastadd-mquat-solver-aco:test - docker run $CONTAINER_TEST_IMAGE /ttc18/gradlew --no-daemon jastadd-mquat-solver-aco:test
# was never working
# test_emfer: # test_emfer:
# stage: test # stage: test
# tags: # tags:
...@@ -65,7 +66,6 @@ test_ilp: ...@@ -65,7 +66,6 @@ test_ilp:
stage: test stage: test
tags: tags:
- dockered - dockered
allow_failure: true
script: script:
- docker pull $CONTAINER_TEST_IMAGE - docker pull $CONTAINER_TEST_IMAGE
- docker run $CONTAINER_TEST_IMAGE /ttc18/gradlew --no-daemon jastadd-mquat-solver-ilp:test - docker run $CONTAINER_TEST_IMAGE /ttc18/gradlew --no-daemon jastadd-mquat-solver-ilp:test
...@@ -74,7 +74,7 @@ test_random: ...@@ -74,7 +74,7 @@ test_random:
stage: test stage: test
tags: tags:
- dockered - dockered
allow_failure: true # allow_failure: true - not needed because it is seeded
script: script:
- docker pull $CONTAINER_TEST_IMAGE - docker pull $CONTAINER_TEST_IMAGE
- docker run $CONTAINER_TEST_IMAGE /ttc18/gradlew --no-daemon jastadd-mquat-solver-random:test - docker run $CONTAINER_TEST_IMAGE /ttc18/gradlew --no-daemon jastadd-mquat-solver-random:test
...@@ -83,19 +83,10 @@ test_simple: ...@@ -83,19 +83,10 @@ test_simple:
stage: test stage: test
tags: tags:
- dockered - dockered
allow_failure: true
script: script:
- docker pull $CONTAINER_TEST_IMAGE - docker pull $CONTAINER_TEST_IMAGE
- docker run $CONTAINER_TEST_IMAGE /ttc18/gradlew --no-daemon jastadd-mquat-solver-simple:test - docker run $CONTAINER_TEST_IMAGE /ttc18/gradlew --no-daemon jastadd-mquat-solver-simple:test
# test_unit_tests:
# stage: test
# tags:
# - dockered
# script:
# - docker pull $CONTAINER_TEST_IMAGE
# - docker run $CONTAINER_TEST_IMAGE /bin/bash -c 'echo "test.enabled = false" >> /ttc18/jastadd-mquat-solver-genetic/build.gradle && /ttc18/gradlew --no-daemon test'
#
release-image: release-image:
stage: release stage: release
tags: tags:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment