File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 58
58
architecture : ' x64'
59
59
60
60
- name : Run integration tests
61
+ # Since windows VM do not handle well tmpdirs,
62
+ # we create the pytest temp folder in current dir
63
+ if : matrix.operating-system == 'windows-2019'
64
+ run : |
65
+ pip install -r test/requirements.txt
66
+ task test-integration
67
+ env :
68
+ PYTEST_DEBUG_TEMPROOT : ' .pytest-tmp-dir'
69
+
70
+ - name : Run integration tests
71
+ if : matrix.operating-system != 'windows-2019'
61
72
run : |
62
73
pip install -r test/requirements.txt
63
74
task test-integration
Original file line number Diff line number Diff line change 27
27
desc : Run integration tests only
28
28
cmds :
29
29
- go test -run Integration {{ default "-v" .GOFLAGS }} -coverprofile=coverage_integ.txt {{ default .DEFAULT_TARGETS .TARGETS }} {{.TEST_LDFLAGS}}
30
- - pytest --basetemp=.pytest-tmp-dir test
30
+ - pytest test
31
31
32
32
test-legacy :
33
33
desc : Run tests for the `legacy` package
You can’t perform that action at this time.
0 commit comments