Skip to content

Commit 74b4382

Browse files
committed
move canonic test target to the top
1 parent 2a6ece8 commit 74b4382

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

Makefile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ clean:
1717
# Tests #
1818
#########
1919

20-
create-dirs:
21-
mkdir -p test-reports/junit
20+
# Quick tests, also not using OOMMF tests
21+
test:
22+
cd tests && py.test -v -m "not slow and not run_oommf"
2223

2324
test-all: create-dirs
2425
py.test -v --junitxml=$(PROJECT_DIR)/test-reports/junit/test-pytest.xml
@@ -36,14 +37,14 @@ tq:
3637
test-quick:
3738
$(error This target 'test-quick' has been removed, please update the code calling this)
3839

39-
# Quick tests, also not using OOMMF tests
40-
test:
41-
cd tests && py.test -v -m "not slow and not run_oommf"
42-
4340

4441
test-ipynb: create-dirs
4542
cd doc/ipynb && py.test . -v --ipynb --sanitize-with sanitize_file --junitxml=$(PROJECT_DIR)/test-reports/junit/test-ipynb-pytest.xml
4643

44+
create-dirs:
45+
mkdir -p test-reports/junit
46+
47+
4748
#################
4849
# Documentation #
4950
#################

0 commit comments

Comments
 (0)