We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ad9df9 commit c15b23eCopy full SHA for c15b23e
appveyor.yml
@@ -31,7 +31,9 @@ install:
31
- 7z e protoc.zip -o%PROTOC_PATH%
32
33
test_script:
34
- - task.exe test-integration
+ # re-enable after fixing go tests
35
+ # - task.exe test-integration
36
+ - pytest test
37
38
# uncomment to debug builds
39
on_finish:
test/conftest.py
@@ -24,8 +24,7 @@ def data_dir(tmpdir_factory):
24
A tmp folder will be created before running
25
the tests and deleted at the end.
26
"""
27
- fn = tmpdir_factory.mktemp('ArduinoTest')
28
- return fn
+ return str(tmpdir_factory.mktemp('ArduinoTest'))
29
30
@pytest.fixture(scope="session")
0 commit comments