Skip to content

Run tests on Appveyor #303

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jul 24, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
only run python tests
convert py.path to string
  • Loading branch information
masci committed Jul 24, 2019
commit c15b23e59ae34e04478cc9a909c4896ded38dedc
4 changes: 3 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ install:
- 7z e protoc.zip -o%PROTOC_PATH%

test_script:
- task.exe test-integration
# re-enable after fixing go tests
# - task.exe test-integration
- pytest test

# uncomment to debug builds
on_finish:
Expand Down
3 changes: 1 addition & 2 deletions test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ def data_dir(tmpdir_factory):
A tmp folder will be created before running
the tests and deleted at the end.
"""
fn = tmpdir_factory.mktemp('ArduinoTest')
return fn
return str(tmpdir_factory.mktemp('ArduinoTest'))


@pytest.fixture(scope="session")
Expand Down