Skip to content

Commit 0d13c9a

Browse files
committed
Remove targets.
1 parent edd794c commit 0d13c9a

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
max-parallel: 5
1111
matrix:
1212
python-version: ['3.5', '3.6', '3.7', '3.8']
13-
target: ['postgresql', 'mariadb', 'sqlite', 'docs', 'style', 'readme']
13+
target: ['postgresql', 'mariadb', 'sqlite']
1414

1515
services:
1616
mariadb:

tox.ini

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
22
envlist =
3-
docs,
4-
style,
5-
readme,
3+
py38-docs,
4+
py38-style,
5+
py38-readme,
66
py{35,36,37,38}-dj22-sqlite
77
py{36,37,38}-dj{30,31}-sqlite
88
py{36,37,38}-djmaster-sqlite
@@ -36,24 +36,21 @@ whitelist_externals = make
3636
pip_pre = True
3737
commands = make coverage TEST_ARGS='{posargs:tests}'
3838

39-
[testenv:docs]
40-
basepython = python3.8
39+
[testenv:py38-docs]
4140
commands = make -C {toxinidir}/docs spelling
4241
deps =
4342
Sphinx
4443
sphinxcontrib-spelling
4544

46-
[testenv:style]
47-
basepython = python3.8
45+
[testenv:py38-style]
4846
commands = make style_check
4947
deps =
5048
black>=19.10b0
5149
flake8
5250
isort>=5.0.2
5351
skip_install = true
5452

55-
[testenv:readme]
56-
basepython = python3.8
53+
[testenv:py38-readme]
5754
commands = python setup.py check -r -s
5855
deps = readme_renderer
5956
skip_install = true
@@ -70,6 +67,3 @@ TARGET =
7067
sqlite: sqlite
7168
postgresql: postgresql
7269
mariadb: mariadb
73-
docs: docs
74-
style: style
75-
readme: readme

0 commit comments

Comments
 (0)