Skip to content

Commit 590a727

Browse files
committed
Run all nmag tests, instead of just the fast ones.
1 parent 608ef08 commit 590a727

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

roles/nmag/tasks/test.yml

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,26 @@
77
chdir: "{{ NMAG_INSTALL_PREFIX }}/{{ NMAG_VERSION }}/nsim/tests/config"
88
sudo: yes
99

10-
- name: Run tests.
11-
command: make test
10+
- name: Run fast tests.
11+
command: make check
1212
args:
13-
chdir: "{{ NMAG_INSTALL_PREFIX }}/{{ NMAG_VERSION }}/tests"
14-
environment:
15-
PATH: "$PATH:{{ NMAG_INSTALL_PREFIX }}/{{ NMAG_VERSION }}/nsim/bin"
13+
chdir: "{{ NMAG_INSTALL_PREFIX }}/{{ NMAG_VERSION }}/nsim/tests"
14+
sudo: yes
15+
16+
- name: Run slow tests.
17+
command: make checkslow
18+
args:
19+
chdir: "{{ NMAG_INSTALL_PREFIX }}/{{ NMAG_VERSION }}/nsim/tests"
20+
sudo: yes
21+
22+
- name: Run MPI tests.
23+
command: make checkmpi
24+
args:
25+
chdir: "{{ NMAG_INSTALL_PREFIX }}/{{ NMAG_VERSION }}/nsim/tests"
26+
sudo: yes
27+
28+
- name: Run HLib tests.
29+
command: make checkhlib
30+
args:
31+
chdir: "{{ NMAG_INSTALL_PREFIX }}/{{ NMAG_VERSION }}/nsim/tests"
1632
sudo: yes

0 commit comments

Comments
 (0)