Integration tests workflow (2)

This commit is contained in:
Stéphane Bruckert 2022-11-01 21:36:43 +00:00 committed by GitHub
parent 0c32cd74d9
commit 459be3d400
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

25
.github/workflows/integration_tests.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Integration tests
on: [push, pull_request_target]
jobs:
build:
runs-on: ubuntu-latest
env:
SPOTIPY_CLIENT_ID: ${{ secrets.SPOTIPY_CLIENT_ID }}
SPOTIPY_CLIENT_SECRET: ${{ secrets.SPOTIPY_CLIENT_SECRET }}
PYTHON_VERSION: "3.10"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Run non user endpoints integration tests
run: |
python -m unittest discover -v tests/integration/non_user_endpoints