Skip to content

Commit 87e2762

Browse files
authored
Remove unnecessary content from tox.ini. (#30)
1 parent aeed4ea commit 87e2762

File tree

3 files changed

+7
-28
lines changed

3 files changed

+7
-28
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -64,23 +64,3 @@ jobs:
6464
if: runner.os == 'Linux' && matrix.python-version == '3.7'
6565
shell: bash -l {0}
6666
run: cat codecov.yml | curl --data-binary @- https://codecov.io/validate
67-
68-
69-
pre-commit:
70-
71-
name: Run pre-commit.
72-
runs-on: ubuntu-latest
73-
74-
steps:
75-
- uses: actions/checkout@v2
76-
77-
- name: Set up Python 3.8
78-
uses: actions/setup-python@v1
79-
with:
80-
python-version: 3.8
81-
82-
- name: Install dependencies
83-
run: pip install tox
84-
85-
- name: Run pre-commit
86-
run: tox -e pre-commit

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ all releases are available on `PyPI <https://pypi.org/project/pytask-parallel>`_
77
`Anaconda.org <https://anaconda.org/conda-forge/pytask-parallel>`_.
88

99

10+
0.1.1 - 2022-xx-xx
11+
------------------
12+
13+
- :gh:`30` removes unnecessary content from ``tox.ini``.
14+
15+
1016
0.1.0 - 2021-07-20
1117
------------------
1218

tox.ini

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = pytest, pre-commit
2+
envlist = pytest
33
skipsdist = True
44
skip_missing_interpreters = True
55

@@ -21,19 +21,12 @@ commands =
2121
pip install --no-deps -e .
2222
pytest {posargs}
2323

24-
[testenv:pre-commit]
25-
deps = pre-commit
26-
commands = pre-commit run --all-files
27-
2824
[doc8]
2925
ignore = D002, D004
3026
max-line-length = 89
3127

3228
[flake8]
3329
docstring-convention = numpy
34-
exclude =
35-
versioneer.py
36-
src/pytask_parallel/_version.py
3730
ignore =
3831
D
3932
E203 ; ignores whitespace around : which is enforced by Black.

0 commit comments

Comments
 (0)