Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MJedr committed Jul 11, 2023
1 parent 17fb77c commit bab4df7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ jobs:
tests:
name: tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
name: Checkout
Expand All @@ -31,9 +29,9 @@ jobs:
python-version: 3.8
- run: |
python -m pip install --upgrade pip
pip install ".[all,test]"
pip install -e .[all,tests]
name: Install dependencies
- run: pip freeze
name: List dependencies
- run: pytest tests
- run: python -m pytest tests
name: Run tests
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@
include_package_data=True,
python_requires=">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*",
install_requires=["Flask>=0.10", "SQLAlchemy<2.0"],
extras_require={
"tests": [
"pytest",
"coverage",
"blinker",
"mock"
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
Expand Down

0 comments on commit bab4df7

Please sign in to comment.