~sschwarzer/ftputil

ftputil/tox.ini -rw-r--r-- 570 bytes
77f2ca24Stefan Schwarzer Move item "Push to repository" 27 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it,
# "pip install tox" and then run "tox" from this directory.

[pytest]
addopts = --tb=short --strict-markers
markers =
    slow_test: marks tests as slow (deselect with '-m "not slow_test"')

[tox]
envlist = py37, py38, py39, py310, py311, py312

[testenv]
# Avoid color to keep Sourcehut build log readable.
commands = python -m pytest --color=no test
deps =
    pytest
    freezegun