Helps generate commands for running specific tests
Supports pytest and nose
Supports Python 2.7 and Python >= 3.5
Tested on Linux
$ pip install git+https://github.com/iperesunko/better-test-tool.git --user
Or download the binary from release page
For bash users add this to your .bashrc
:
eval "$(_BTT_COMPLETE=source btt)"
For zsh users add this to your .zshrc
:
eval "$(_BTT_COMPLETE=source_zsh btt)"
$ btt --help
- parse - parses a test folder structure and cache it
- nosetests - generates a command for manual execute in nosetests
- pytest - generates a command for manual execute in pytest
- optional arguments
- -m ,--method - used with runners (nosetests or pytest commands). Allows you to specify the name of the test case
- -cp, --copy - copy result to clipboard
If several matches are found with the names, you will be offered the choice of a module and a test case.
$ btt parse test
Parsing completed. Found 104 files.
$ btt nosetests "functional config server"
nosetests test/functional/test_config_server.py
$ btt nosetests "db utils" -m "open conn"
nosetests -svv test/test_db_utils.py:TestFreeTDSBackend.test_open_nonexistent_connection
$ btt pytest "func config server"
pytest test/functional/test_config_server.py -v
$ btt pytest "db utils" -m "close conn"
pytest test/test_db_utils.py::TestBackendConnectionFabric::test_open_close_postgre_connection -v
$ btt pytest "unit config" -cp
Copied to clipboard
pytest file-fixtures/unit/server/test_config_server.py -v
# press Ctrl+V for paste a saved command