Skip to content

Commit

Permalink
Update: .travis.yml and workflow.yml configs
Browse files Browse the repository at this point in the history
  • Loading branch information
meherett committed Oct 23, 2023
1 parent 665c6c3 commit 91e0f40
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[tests,docs]
- name: Test with pytest
run: pytest
pip install -e .[tests,docs] coveralls
- name: Test with PyTest with Coverage
run: coverage run --source=bip38 -m pytest
- name: Submit Coverage report to Coveralls
if: ${{ matrix.python-version < "3.11" }}
run: coveralls
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dist: bionic
before_install:
- python -m pip install --upgrade pip
install:
- pip install -e .[tests,docs] tox-travis coveralls
- pip install -e .[tests,docs] tox-travis
matrix:
include:
- name: "3.9"
Expand All @@ -13,6 +13,3 @@ matrix:
- name: "3.11"
python: 3.11
script: tox
after_success:
- if [ "${TRAVIS_PYTHON_VERSION}" == "3.11" ]; then coverage run --source=bip38 -m pytest; fi;
- if [ "${TRAVIS_PYTHON_VERSION}" == "3.11" ]; then coveralls; fi;

0 comments on commit 91e0f40

Please sign in to comment.