52
52
- uses : actions/checkout@v2
53
53
- uses : ./.github/actions/start-build
54
54
- name : Run tests
55
- run : poetry run python3 -m invoke test-ci-addons -n auto - -junit
55
+ run : poetry run python3 -m invoke test-ci-addons --junit
56
56
- name : Upload report
57
57
if : (success() || failure()) # run this step even if previous step failed
58
58
uses : ./.github/actions/gen-report
79
79
- uses : actions/checkout@v2
80
80
- uses : ./.github/actions/start-build
81
81
- name : Run tests
82
- run : poetry run python3 -m invoke test-ci-website -n auto - -junit
82
+ run : poetry run python3 -m invoke test-ci-website --junit
83
83
- name : Upload report
84
84
if : (success() || failure()) # run this step even if previous step failed
85
85
uses : ./.github/actions/gen-report
@@ -108,7 +108,7 @@ jobs:
108
108
- name : NVM & yarn install
109
109
run : poetry run python3 -m invoke assets --dev
110
110
- name : Run test
111
- run : poetry run python3 -m invoke test-ci-api1-and-js -n auto - -junit
111
+ run : poetry run python3 -m invoke test-ci-api1-and-js --junit
112
112
- name : Upload report
113
113
if : (success() || failure()) # run this step even if previous step failed
114
114
uses : ./.github/actions/gen-report
@@ -135,7 +135,7 @@ jobs:
135
135
- uses : actions/checkout@v2
136
136
- uses : ./.github/actions/start-build
137
137
- name : Run tests
138
- run : poetry run python3 -m invoke test-ci-api2 -n auto - -junit
138
+ run : poetry run python3 -m invoke test-ci-api2 --junit
139
139
- name : Upload report
140
140
if : (success() || failure()) # run this step even if previous step failed
141
141
uses : ./.github/actions/gen-report
@@ -163,7 +163,7 @@ jobs:
163
163
- uses : actions/checkout@v2
164
164
- uses : ./.github/actions/start-build
165
165
- name : Run tests
166
- run : poetry run python3 -m invoke test-ci-api3-and-osf -n auto - -junit
166
+ run : poetry run python3 -m invoke test-ci-api3-and-osf --junit
167
167
- name : Upload report
168
168
if : (success() || failure()) # run this step even if previous step failed
169
169
uses : ./.github/actions/gen-report
0 commit comments