maestral/.github/workflows/test.yml
dependabot[bot] 6e7a846f8d
Bump actions/setup-python from 2 to 3
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 3.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-01 21:30:09 +00:00

127 lines
3.7 KiB
YAML

name: Run tests
on:
pull_request_target:
paths:
# run tests only when the python code has changed
- 'src/**.py'
- 'tests/**.py'
workflow_dispatch:
jobs:
offline-tests:
name: offline
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
python-version: ['3.7', '3.10']
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout merge commit
uses: actions/checkout@v3
if: github.event_name == 'pull_request_target'
with:
ref: 'refs/pull/${{ github.event.number }}/merge'
persist-credentials: false
- name: Checkout head commit
uses: actions/checkout@v3
if: github.event_name != 'pull_request_target'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -U .[dev]
- name: Test with pytest
run: |
python -m pytest --cov=maestral --cov-report=xml tests/offline
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2.1.0
with:
file: ./coverage.xml
flags: pytest
env_vars: OS,PYTHON,TYPE
name: pytests -v
env:
OS: ${{ matrix.platform }}
PYTHON: ${{ matrix.python-version }}
TYPE: 'offline'
online-tests:
name: online
needs: offline-tests
strategy:
max-parallel: 2
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest]
python-version: ['3.10', ]
include:
# use two different Dropbox accounts to run tests in parallel
- platform: ubuntu-latest
token: DROPBOX_REFRESH_TOKEN_1
- platform: macos-latest
token: DROPBOX_REFRESH_TOKEN_2
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout merge commit
uses: actions/checkout@v3
if: github.event_name == 'pull_request_target'
with:
ref: 'refs/pull/${{ github.event.number }}/merge'
persist-credentials: false
- name: Checkout head commit
uses: actions/checkout@v3
if: github.event_name != 'pull_request_target'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -U .[dev]
- name: Get short-lived Dropbox token
# We generate a short-lived auth token which is passed to the test runner as
# an environment variable. At no point does the test code, potentially from a
# malicious PR, get access to a long-lived token.
run: |
auth_result=$(curl https://api.dropbox.com/oauth2/token \
-d grant_type=refresh_token \
-d refresh_token=${{ secrets[matrix.token] }} \
-d client_id=2jmbq42w7vof78h)
token=$(echo $auth_result | python -c "import sys, json; print(json.load(sys.stdin)['access_token'])")
echo "::add-mask::$token"
echo "DROPBOX_ACCESS_TOKEN=$token" >> $GITHUB_ENV
- name: Test with pytest
run: |
pytest -v --cov=maestral --cov-report=xml tests/linked
- name: Upload Code Coverage
uses: codecov/codecov-action@v2.1.0
with:
file: ./coverage.xml
flags: pytest
env_vars: OS,PYTHON,TYPE
name: pytests
env:
OS: ${{ matrix.platform }}
PYTHON: ${{ matrix.python-version }}
TYPE: 'linked'