Skip to content

Commit c15b23e

Browse files
committed
only run python tests
convert py.path to string
1 parent 3ad9df9 commit c15b23e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ install:
3131
- 7z e protoc.zip -o%PROTOC_PATH%
3232

3333
test_script:
34-
- task.exe test-integration
34+
# re-enable after fixing go tests
35+
# - task.exe test-integration
36+
- pytest test
3537

3638
# uncomment to debug builds
3739
on_finish:

test/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ def data_dir(tmpdir_factory):
2424
A tmp folder will be created before running
2525
the tests and deleted at the end.
2626
"""
27-
fn = tmpdir_factory.mktemp('ArduinoTest')
28-
return fn
27+
return str(tmpdir_factory.mktemp('ArduinoTest'))
2928

3029

3130
@pytest.fixture(scope="session")

0 commit comments

Comments
 (0)