We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b4382 commit 37a6bd0Copy full SHA for 37a6bd0
Makefile
@@ -21,6 +21,11 @@ clean:
21
test:
22
cd tests && py.test -v -m "not slow and not run_oommf"
23
24
+test2:
25
+ # like test, but run also outside the 'tests' directory.
26
+ # Doesn't work on Hans laptop.
27
+ py.test -v -m "not slow and not run_oommf"
28
+
29
test-all: create-dirs
30
py.test -v --junitxml=$(PROJECT_DIR)/test-reports/junit/test-pytest.xml
31
@@ -41,6 +46,9 @@ test-quick:
41
46
test-ipynb: create-dirs
42
47
cd doc/ipynb && py.test . -v --ipynb --sanitize-with sanitize_file --junitxml=$(PROJECT_DIR)/test-reports/junit/test-ipynb-pytest.xml
43
48
49
+test-oommf:
50
+ py.test -v -m "oommf"
51
44
52
create-dirs:
45
53
mkdir -p test-reports/junit
54
0 commit comments