Skip to content

Commit

Permalink
comment out non-integration tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
TShapinsky committed Dec 15, 2023
1 parent 8ba7a79 commit 1039834
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,27 @@ jobs:
uses: pre-commit/[email protected]
with:
extra_args: --all-files
tests:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install poetry
uses: abatilo/[email protected]
with:
poetry-version: "1.3.1"

- name: Run tests with poetry and pytest
run: |
poetry install
poetry run pytest
# tests:
# name: Run tests
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.8", "3.9", "3.10", "3.11"]
# steps:
# - name: Checkout code
# uses: actions/checkout@v2

# - name: Install Python
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}

# - name: Install poetry
# uses: abatilo/[email protected]
# with:
# poetry-version: "1.3.1"

# - name: Run tests with poetry and pytest
# run: |
# poetry install
# poetry run pytest

0 comments on commit 1039834

Please sign in to comment.