Skip to content

Commit

Permalink
Merge pull request #2382 from AndreMiras/feature/fix_travis
Browse files Browse the repository at this point in the history
🐛 Fixes pip command on Travis and bumps actions/setup-python
  • Loading branch information
AndreMiras authored Dec 28, 2020
2 parents 406a258 + db615eb commit 73a4c52
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Checkout python-for-android
uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
uses: actions/setup-python@v2.2.1
with:
python-version: 3.7
- name: Run flake8
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Checkout python-for-android
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v2.2.1
with:
python-version: ${{ matrix.python-version }}
- name: Tox tests
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
- type -t deactivate && deactivate || true
- export PATH=/opt/python/3.7.1/bin:$PATH
# Install tox
- pip3.7 install tox>=2.0
- python3.7 -m pip install tox>=2.0
# Install coveralls & dependencies
# Note: pyOpenSSL needed to send the coveralls reports
- pip3.7 install pyOpenSSL
- pip3.7 install coveralls
- python3.7 -m pip install pyOpenSSL
- python3.7 -m pip install coveralls
script:
# ignores test_pythonpackage.py since it runs for too long
- tox -- tests/ --ignore tests/test_pythonpackage.py
Expand Down

0 comments on commit 73a4c52

Please sign in to comment.