Skip to content

Commit

Permalink
Due to compatibility issues that are not caused by the project
Browse files Browse the repository at this point in the history
  • Loading branch information
henrykironde committed Dec 19, 2022
1 parent bf9f0c5 commit 244bb21
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
python -m pip install --upgrade pip
python -m pip install flake8 pytest coveralls pytest-cov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install cligj
run: |
pip install -e .
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ sudo: false
language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
install:
- "pip install coveralls==3.2.0"
- "pip install python-coveralls"
- "pip install -e .[test]"
script:
- py.test --cov cligj --cov-report term-missing
Expand Down

0 comments on commit 244bb21

Please sign in to comment.