Skip to content

Commit fc39d55

Browse files
committed
fixed xdist unlock
1 parent baa9450 commit fc39d55

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/test-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v2
5353
- uses: ./.github/actions/start-build
5454
- 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
5656
- name: Upload report
5757
if: (success() || failure()) # run this step even if previous step failed
5858
uses: ./.github/actions/gen-report
@@ -79,7 +79,7 @@ jobs:
7979
- uses: actions/checkout@v2
8080
- uses: ./.github/actions/start-build
8181
- 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
8383
- name: Upload report
8484
if: (success() || failure()) # run this step even if previous step failed
8585
uses: ./.github/actions/gen-report
@@ -108,7 +108,7 @@ jobs:
108108
- name: NVM & yarn install
109109
run: poetry run python3 -m invoke assets --dev
110110
- 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
112112
- name: Upload report
113113
if: (success() || failure()) # run this step even if previous step failed
114114
uses: ./.github/actions/gen-report
@@ -135,7 +135,7 @@ jobs:
135135
- uses: actions/checkout@v2
136136
- uses: ./.github/actions/start-build
137137
- 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
139139
- name: Upload report
140140
if: (success() || failure()) # run this step even if previous step failed
141141
uses: ./.github/actions/gen-report
@@ -163,7 +163,7 @@ jobs:
163163
- uses: actions/checkout@v2
164164
- uses: ./.github/actions/start-build
165165
- 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
167167
- name: Upload report
168168
if: (success() || failure()) # run this step even if previous step failed
169169
uses: ./.github/actions/gen-report

tasks/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ def test_module(ctx, module=None, numprocesses=None, nocapture=False, params=Non
296296
# https://github.com/gabrielfalcao/HTTPretty/issues/209#issue-54090252
297297
args = []
298298
if junit:
299-
args.extend(['--junit-xml', 'report.xml'])
299+
args.extend(['--html=report/report.html'])
300300
if coverage:
301301
args.extend([
302302
'--cov-report', 'term-missing',

0 commit comments

Comments
 (0)