Skip to content

Commit 63f6946

Browse files
committed
Call pytest from proper location
* Remove rerun option from azure-pipelines.yml Signed-off-by: Jono Yang <jyang@nexb.com>
1 parent 0f293cb commit 63f6946

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

azure-pipelines.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
image_name: ubuntu-16.04
1717
python_versions: ['3.6']
1818
test_suites:
19-
all: bin/py.test -n 2 -vvs --reruns=3
19+
all: tmp/bin/pytest -n 2 -vvs
2020

2121
- template: etc/ci/azure-mac.yml
2222
parameters:
2323
job_name: macos1015_py36
2424
image_name: macos-10.15
2525
python_versions: ['3.6']
2626
test_suites:
27-
all: bin/py.test -n 2 -vvs --reruns=3
27+
all: tmp/bin/pytest -n 2 -vvs
2828

2929
- template: etc/ci/azure-win.yml
3030
parameters:
@@ -33,7 +33,7 @@ jobs:
3333
python_versions: ['3.6']
3434
python_architecture: x86
3535
test_suites:
36-
all: Scripts\py.test -vvs --reruns=3
36+
all: tmp\Scripts\pytest -vvs
3737

3838
- template: etc/ci/azure-win.yml
3939
parameters:
@@ -42,4 +42,4 @@ jobs:
4242
python_versions: ['3.6']
4343
python_architecture: x64
4444
test_suites:
45-
misc: Scripts\py.test -vvs --reruns=3
45+
misc: tmp\Scripts\pytest -vvs

0 commit comments

Comments
 (0)