Merge pull request #756 from gotmax23/no-pytest-runner

remove deprecated pytest-runner
This commit is contained in:
Matt Rose 2024-01-26 11:19:21 -05:00 committed by GitHub
commit 6d5cd041b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 8 deletions

View File

@ -41,13 +41,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
python setup.py develop
pip install -e '.[test]'
- name: Compile all scripts
run: python -m compileall -f terminatorlib/ tests/ remotinator terminator
- name: Run tests
run: |
pip install -e '.[test]'
xvfb-run -a python setup.py test
xvfb-run -a pytest

View File

@ -219,9 +219,6 @@ setup(name=APP_NAME,
'terminatorlib',
'terminatorlib.plugins',
],
setup_requires=[
'pytest-runner',
],
install_requires=[
'pycairo',
'configobj',
@ -229,7 +226,6 @@ setup(name=APP_NAME,
'pygobject',
'psutil',
],
tests_require=test_deps,
extras_require={'test': test_deps},
package_data={'terminatorlib': ['preferences.glade', 'layoutlauncher.glade']},
cmdclass={'build': BuildData, 'install_data': InstallData, 'uninstall': Uninstall},