Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Rud356 committed Aug 1, 2023
2 parents 3fe6ef1 + e6f09b3 commit 81f0df8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest mypy types-PyYAML types-toml
python -m pip install flake8 pytest mypy types-PyYAML types-toml toml
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
Expand All @@ -40,4 +40,5 @@ jobs:
- name: Lint with mypy
run: |
mypy -p config_framework
if [ ${{ matrix.python-version }} <= 3.11 ]; then mypy -p config_framework --exclude .*/toml_read_only.py; fi
if [ ${{ matrix.python-version }} >= 3.11 ]; then mypy -p config_framework; fi

0 comments on commit 81f0df8

Please sign in to comment.