forked from ingwinlu/pelican-toc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
33 lines (30 loc) · 729 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]
skipsdist = true
envlist = py{37,38}-pelican{45,dev}
[testenv]
basepython =
py37: python3.7
py38: python3.8
deps =
pelican45: git+https://github.com/getpelican/[email protected]#egg=pelican
pelicandev: git+https://github.com/getpelican/pelican.git#egg=pelican
beautifulsoup4
-rdev_requirements.txt
passenv = *
install_command= pip install {opts} -e {packages}
commands =
{envpython} --version
pelican --version
{envpython} test_toc.py
[flake8]
application-import-names=toc
import-order-style=cryptography
[testenv:flake8]
basepython = python3.8
deps =
flake8
flake8-import-order
install_command= pip install {opts} {packages}
commands =
flake8 --version
flake8 toc.py