forked from timbertson/python-readability
-
Notifications
You must be signed in to change notification settings - Fork 348
/
tox.ini
33 lines (29 loc) · 1004 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Tox (http://tox.testrun.org/) 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.
[tox]
envlist =
py{38,39,310,311,312,313,py3}, doc
skip_missing_interpreters =
True
[testenv]
deps =
pytest
doc: sphinx
doc: sphinx_rtd_theme
doc: myst-parser
# This creates the virtual envs with --site-packages so already packages
# that are already installed will be reused. This is especially useful on
# Windows. Since we use lxml instead of compiling it locally (which in turn
# requires a Compiler and the build dependencies), you can download
# it from http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml and install it via
# $PYTHONDIR\Scripts\pip.exe install *.whl
sitepackages=
True
commands =
pip install -r requirements.txt -e ".[test]"
py.test
[testenv:doc]
commands =
sphinx-build -b html doc/source/ build/