Skip to content

Remove unnecessary content from tox.ini. #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,23 +64,3 @@ jobs:
if: runner.os == 'Linux' && matrix.python-version == '3.7'
shell: bash -l {0}
run: cat codecov.yml | curl --data-binary @- https://codecov.io/validate


pre-commit:

name: Run pre-commit.
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8

- name: Install dependencies
run: pip install tox

- name: Run pre-commit
run: tox -e pre-commit
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ all releases are available on `PyPI <https://pypi.org/project/pytask-parallel>`_
`Anaconda.org <https://anaconda.org/conda-forge/pytask-parallel>`_.


0.1.1 - 2022-xx-xx
------------------

- :gh:`30` removes unnecessary content from ``tox.ini``.


0.1.0 - 2021-07-20
------------------

Expand Down
9 changes: 1 addition & 8 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = pytest, pre-commit
envlist = pytest
skipsdist = True
skip_missing_interpreters = True

Expand All @@ -21,19 +21,12 @@ commands =
pip install --no-deps -e .
pytest {posargs}

[testenv:pre-commit]
deps = pre-commit
commands = pre-commit run --all-files

[doc8]
ignore = D002, D004
max-line-length = 89

[flake8]
docstring-convention = numpy
exclude =
versioneer.py
src/pytask_parallel/_version.py
ignore =
D
E203 ; ignores whitespace around : which is enforced by Black.
Expand Down