Skip to content

Commit

Permalink
fix: remove pytest-runner from setup_requires
Browse files Browse the repository at this point in the history
Close #26
  • Loading branch information
Toilal committed Feb 18, 2023
1 parent e4cb0d8 commit 4483d17
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- run: pylint rebulk

- run: coverage run --source=rebulk setup.py test
- run: coverage run -m pytest
env:
REBULK_REGEX_ENABLED: ${{ matrix.regex }}

Expand Down
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

native_requires = ['regex']

setup_requires = ['pytest-runner']

dev_require = ['pytest', 'pylint', 'tox']

tests_require = ['pytest', 'pylint']
Expand Down Expand Up @@ -51,7 +49,6 @@
license='MIT',
packages=find_packages(),
include_package_data=True,
setup_requires=setup_requires,
install_requires=install_requires,
tests_require=tests_require,
test_suite='rebulk.test',
Expand Down

0 comments on commit 4483d17

Please sign in to comment.