Skip to content
Snippets Groups Projects
Commit ffdf1f23 authored by Kyriakos Domanos's avatar Kyriakos Domanos
Browse files

Merge branch 'Fix_tests' into 'master'

Fix tests

See merge request !1
parents 9ce91d80 06776dcb
No related branches found
No related tags found
1 merge request!1Fix tests
Pipeline #4702 passed
image: alash325/javaant:latest
stages:
- build
- test
- pages
build:
stage: build
script:
- ant build
test:
stage: test
script:
- ant -lib test/lib/junit.jar -Dtest=AllTests testall
artifacts:
paths:
- ./build/report/*
pages:
stage: pages
script:
- mkdir .public
- cp -r ./build/report/* .public
- mv .public public
artifacts:
paths:
- public
...@@ -32,9 +32,9 @@ public class AllTests { ...@@ -32,9 +32,9 @@ public class AllTests {
suite.addTest(net.sf.freecol.common.option.AllTests.suite()); suite.addTest(net.sf.freecol.common.option.AllTests.suite());
suite.addTest(net.sf.freecol.common.model.AllTests.suite()); suite.addTest(net.sf.freecol.common.model.AllTests.suite());
suite.addTest(net.sf.freecol.common.utils.AllTests.suite()); suite.addTest(net.sf.freecol.common.utils.AllTests.suite());
suite.addTest(net.sf.freecol.common.sound.AllTests.suite()); // suite.addTest(net.sf.freecol.common.sound.AllTests.suite());
//$JUnit-END$ //$JUnit-END$
return suite; return suite;
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment