Skip to content

Commit

Permalink
update pytest pins
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcky committed Sep 9, 2024
1 parent 5dafdd7 commit 79ea60e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.11"]
# Only test the latest major release of Sphinx because otherwise we need to
# keep multiple versions of regression tests on file and this creates lots of
# noise in the tests.
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
pytest --durations=10 --cov=quantecon_book_theme --cov-report=xml --cov-report=term-missing
- name: Upload to Codecov
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.9 && github.repository == 'QuantEcon/quantecon-book-theme' && github.event_name == 'pull_request'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.11 && github.repository == 'QuantEcon/quantecon-book-theme' && github.event_name == 'pull_request'
uses: codecov/codecov-action@v3.1.4
with:
name: ebp-qbt-pytests-py3.7
Expand All @@ -70,7 +70,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
- name: Build package
run: |
python -m pip install -U pip build
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ doc = [
test = [
"myst_nb",
"coverage",
"pytest~=7.1",
"pytest",
"pytest-cov",
"beautifulsoup4",
"sphinx_thebe",
"pytest-regressions~=2.0.1",
"pytest-regressions",
"sphinx_copybutton",
"sphinx_togglebutton",
]
Expand Down

1 comment on commit 79ea60e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.