Skip to content

Commit

Permalink
Merge pull request #16 from photonbit/fix-ci
Browse files Browse the repository at this point in the history
Fix CI tests run
  • Loading branch information
Relifest authored Jul 22, 2024
2 parents 582c8a9 + 5642f66 commit 733a9f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
${{ runner.os }}-pip-
- name: Install dependencies
run: pip install -r requirements.txt && pip install .[test]
run: pip install -r requirements.txt && pip install .[dev]

- name: Run tests
run: pytest
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,8 @@ def read(filename, encoding='utf-8'):
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
tests_require=['pytest']
tests_require=['pytest'],
extras_require={
'dev': ['pytest'],
},
)

0 comments on commit 733a9f2

Please sign in to comment.