Skip to content

Commit

Permalink
fix: Removed matrix testing on prod and dev. Removed tests on dev build
Browse files Browse the repository at this point in the history
  • Loading branch information
CS76 committed Mar 20, 2023
1 parent 3b611e4 commit 7268750
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -36,9 +36,9 @@ jobs:
- name: Analysing the code with pylint
run: |
flake8 --ignore E501,W503 $(git ls-files '*.py')
- name: Run test
run: |
pytest -p no:warnings
# - name: Run test
# run: |
# pytest -p no:warnings

setup-build-publish-dev:
name: Build & publish to dev registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prod-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 7268750

Please sign in to comment.