mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-06 04:17:47 +03:00
- Use sphinxcontrib.spelling with custom wordlist. - Skip the checking of the modules documents as they raise false-positives. - Add a setup.py spellcheck_docs command. - Fix spelling and other issues. - Add a doc favicon.
1.7 KiB
1.7 KiB
Running tests
Deluge testing is implemented using Trial which is Twisted's testing framework and an extension of Python's unittest.
See Twisted website for documentation on Twisted Trial and Writing tests using Trial.
Testing
The tests are located in the source folder under deluge/tests
.
The tests are run from the project root directory.
View the unit test coverage at: deluge-torrent.github.io
Trial
Here are some examples that show running all the test through to selecting an individual test.
trial deluge
trial deluge.tests.test_client
trial deluge.tests.test_client.ClientTestCase
trial deluge.tests.test_client.ClientTestCase.test_connect_localclient
Pytest
pytest deluge/tests
pytest deluge/tests/test_client.py
pytest deluge/tests/test_client.py -k test_connect_localclient
Plugin
Running the tests for a specific plugin (requires pytest):
pytest deluge/plugins/<name-of-plugin>
Tox
All the tests for Deluge can be run using Tox
See available targets:
tox -l
py27
py3
lint
docs
Run specific test:
tox -e py3
Verify code with pre-commit:
tox -e lint
Travis CI
Deluge develop branch is tested automatically by Travis. When creating a pull request (PR) on GitHub, Travis will be automatically run the unit tests with the code in the PR.