Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 323 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 323 Bytes

Executing Tests

# run all tests in the current directory
$ pytest-3

# run all tests with full stdout (-s / --capture=no)
$ pytest-3 -s

# run a test module
$ pytest-3 -s test_alakazam.py

# run a single test
$ pytest-3 -s test_action_clients.py::test_success

# run using setuptools
$ python3 setup.py test