Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
blaylockbk committed Jan 14, 2025
1 parent 1634dba commit 73490b2
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests-python.yml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ jobs:
fail-fast: true
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
# In order to save resources, only run particular
# matrix slots on other OS than Linux.
include:
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -43,3 +43,5 @@ herbie/_version.py

*.pkl
.coverage

.ruff_cache/
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -92,10 +92,10 @@ extend-select = [
[tool.ruff.lint.pydocstyle]
convention = "numpy"

#[tool.pytest.ini_options]
#minversion = "2.0"
#addopts = "-rsfEX -p pytester --strict-markers --verbosity=3 --cov=herbie"
#log_level = "DEBUG"
#testpaths = ["tests"]
#xfail_strict = true
#markers = []
[tool.pytest.ini_options]
minversion = "2.0"
addopts = "-rsfEX -p pytester --strict-markers --verbosity=3 --cov=herbie"
log_level = "DEBUG"
testpaths = ["tests"]
xfail_strict = true
markers = []
1 change: 0 additions & 1 deletion tests/test_simple.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
def test_charity():
"""Charity never faileth."""

assert "charity" == "charity"

0 comments on commit 73490b2

Please sign in to comment.