Skip to content

Commit

Permalink
calling pytest.main now with a list instead of a string
Browse files Browse the repository at this point in the history
  • Loading branch information
coreGreenberet committed May 23, 2019
1 parent 681e275 commit 4500204
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from homematicip import __version__

print("HMIP Version ", __version__)
pytest.main("tests -vv")
pytest.main(["tests", "-vv"])
2 changes: 1 addition & 1 deletion test_aio.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from homematicip import __version__

print("HMIP Version ", __version__)
pytest.main("-vv tests/aio_tests/")
pytest.main(["-vv", "tests/aio_tests/"])

0 comments on commit 4500204

Please sign in to comment.