maestral/.github/workflows/test.yml
dependabot[bot] 94f88dc66d
Bump codecov/codecov-action from 3 to 4
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v3...v4)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-14 18:10:13 +00:00

199 lines
6.0 KiB
YAML

name: Run tests
on:
schedule:
- cron: '30 3 * * SUN'
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.8', '3.11']
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout merge commit
uses: actions/checkout@v4
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@v4
if: github.event_name != 'pull_request_target'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -U .[test]
- name: Test with pytest
run: |
python -m pytest --cov=maestral --cov-report=xml tests/offline
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
flags: pytest
env_vars: OS,PYTHON,TYPE
name: pytests -v
env:
OS: ${{ matrix.platform }}
PYTHON: ${{ matrix.python-version }}
TYPE: 'offline'
linked-unit-tests:
name: Linked unit tests
needs: offline-tests
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest]
include:
- 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@v4
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@v4
if: github.event_name != 'pull_request_target'
- name: Set up Python 3.11
uses: actions/setup-python@v4.7.0
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -U .[test]
- name: Get short-lived Oauth2 access 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 an
# untrusted 3rd party, 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/unit
- name: Upload Code Coverage
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
flags: pytest
env_vars: OS,PYTHON,TYPE
name: pytests
env:
OS: ${{ matrix.platform }}
PYTHON: ${{ matrix.python-version }}
TYPE: 'linked-unit-tests'
linked-integration-tests:
name: Linked integration tests
needs: linked-unit-tests
strategy:
fail-fast: false
matrix:
observer: [inotify, fsevents]
include:
- observer: inotify
platform: ubuntu-latest
token: DROPBOX_REFRESH_TOKEN_1
- observer: fsevents
platform: macos-latest
token: DROPBOX_REFRESH_TOKEN_2
# - observer: kqueue
# platform: macos-latest
# token: DROPBOX_REFRESH_TOKEN_3
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout merge commit
uses: actions/checkout@v4
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@v4
if: github.event_name != 'pull_request_target'
- name: Set up Python 3.11
uses: actions/setup-python@v4.7.0
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -U .[test]
- 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 --verbose --cov=maestral --cov-report=xml tests/linked/integration --fs-observer ${{ matrix.observer }}
- name: Upload Code Coverage
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
flags: pytest
env_vars: OS,PYTHON,TYPE
name: pytests
env:
OS: ${{ matrix.platform }}
PYTHON: ${{ matrix.python-version }}
TYPE: 'linked-integration-tests'