Skip to content

Commit

Permalink
Remove references to setup things
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelboulton committed Dec 12, 2022
1 parent 6c72789 commit d39768b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ jobs:
cache-name: cache-${{ matrix.TOXENV }}
with:
path: .tox
key: ${{ runner.os }}-tox-${{ env.cache-name }}-${{ hashFiles('tox.ini', 'tox-integration.ini', 'setup.cfg', 'setup.py') }}
key: ${{ runner.os }}-tox-${{ env.cache-name }}-${{ hashFiles('tox.ini', 'tox-integration.ini', 'pyproject.toml', 'requirements.in') }}

- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt', 'setup.cfg', 'setup.py') }}
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml', 'requirements.in') }}
restore-keys: |
${{ runner.os }}-pip-
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ repos:
args:
- --settings-path=.isort.cfg

exclude: (docs/|example/|tests/|setup.py)
exclude: (docs/|example/|tests/)
4 changes: 2 additions & 2 deletions docs/source/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ plugin.
The entry point needs to point to either a class or a module which defines a
preset number of variables.

Something like this should be in your `setup.py` or `setup.cfg` to make sure
Tavern can pick it up at run time:
Something like this should be in your `setup.py`, `setup.cfg`, `poetry.toml`,
`pyproject.toml`, etc. to make sure Tavern can pick it up at run time:

```
# setup.cfg
Expand Down
1 change: 0 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
omit =
tests/*
.eggs/*
setup.py
env/*
build/*
dist/*
Expand Down

0 comments on commit d39768b

Please sign in to comment.