Skip to content

Commit

Permalink
disable cond pred tests in code_format
Browse files Browse the repository at this point in the history
  • Loading branch information
dswigh committed Jun 24, 2024
1 parent e6b0b79 commit ad6d3db
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/code_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,33 +63,33 @@ jobs:
run: |
poetry run python -m mypy . --explicit-package-bases --ignore-missing-imports ${{ matrix.strict }} --exclude condition_prediction
mypy_condition_prediction:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
# matrix:
# strict: ["", "--strict"]

steps:
- name: Check out repository code
uses: actions/checkout@v2

# Setup Python (faster than using Python container)
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"

- name: Install poetry
uses: Gr1N/setup-poetry@v8

# run poetry install if the poetry lock has changed
- name: Install dependencies
if: steps.cache-poetry.outputs.cache-hit != 'true'
working-directory: condition_prediction
run: poetry install --no-interaction
# mypy_condition_prediction:
# runs-on: ubuntu-latest
# timeout-minutes: 10
# strategy:
# fail-fast: false
# # matrix:
# # strict: ["", "--strict"]

# steps:
# - name: Check out repository code
# uses: actions/checkout@v2

# # Setup Python (faster than using Python container)
# - name: Setup Python
# uses: actions/setup-python@v2
# with:
# python-version: "3.10"

# - name: Install poetry
# uses: Gr1N/setup-poetry@v8

# # run poetry install if the poetry lock has changed
# - name: Install dependencies
# if: steps.cache-poetry.outputs.cache-hit != 'true'
# working-directory: condition_prediction
# run: poetry install --no-interaction

- name: Code Quality
working-directory: condition_prediction
run: poetry run python -m mypy . --explicit-package-bases --ignore-missing-imports
# - name: Code Quality
# working-directory: condition_prediction
# run: poetry run python -m mypy . --explicit-package-bases --ignore-missing-imports

0 comments on commit ad6d3db

Please sign in to comment.