-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
050f604
commit 244bb99
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Test | ||
|
||
jobs: | ||
tests: | ||
name: Test on ${{ matrix.python-version }} / ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
continue-on-error: false | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- { python-version: "3.7", os: "ubuntu-latest" } | ||
- { python-version: "3.8", os: "ubuntu-latest" } | ||
- { python-version: "3.9", os: "ubuntu-latest" } | ||
- { python-version: "3.10", os: "ubuntu-latest" } | ||
|
||
steps: | ||
- name: Check out the repository | ||
uses: actions/[email protected] | ||
|
||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
|
||
- name: Upgrade pip | ||
env: | ||
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
run: | | ||
pip install pip | ||
pip --version | ||
- name: Install Poetry | ||
env: | ||
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
run: | | ||
pipx install poetry | ||
poetry --version | ||
- name: Install Dependencies | ||
run: | | ||
poetry install | ||
- name: Install Dependencies | ||
run: | | ||
poetry install | ||
# TODO: Run complete test suite. Requires setting up some repository secrets | ||
- name: Run tests | ||
run: | | ||
poetry run pytest --doctest-modules singer_sdk | ||
poetry run pytest tests/core | ||
poetry run pytest tests/cookiecutters |