Explorar el Código

Change journey test to allow Ignore annotations to have hints

Frida Johanne Tveit hace 9 años
padre
commit
c174f86ac7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      bin/journey-test.sh

+ 1
- 1
bin/journey-test.sh Ver fichero

@@ -230,7 +230,7 @@ solve_all_exercises() {
230 230
     gradle compileTestJava
231 231
     # Ensure we run all the tests (as delivered, all but the first is @Ignore'd)
232 232
     for testfile in `find . -name "*Test.java"`; do
233
-      sed 's/@Ignore//' ${testfile} > "${tempfile}" && mv "${tempfile}" "${testfile}"
233
+      sed 's/@Ignore\(.*\)//' ${testfile} > "${tempfile}" && mv "${tempfile}" "${testfile}"
234 234
     done
235 235
     gradle test
236 236
     popd