Skip to content

Commit

Permalink
move to correct section
Browse files Browse the repository at this point in the history
  • Loading branch information
junpenglao committed Jul 12, 2024
1 parent c013982 commit 41afbd4
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ testpaths = ["tests"]
minversion = "6.0"
xfail_strict = true
addopts = ["--color=yes"]
filterwarnings =[
# JAX issues an over-eager warning if os.fork() is called when the JAX module is loaded, even if JAX isn't being used
'ignore:os\.fork\(\) was called\.:RuntimeWarning',

# Warning coming from blackjax
'ignore:jax\.tree_map is deprecated:DeprecationWarning',
]

[tool.versioneer]
VCS = "git"
Expand Down Expand Up @@ -94,11 +101,3 @@ exclude_lines = [

[tool.coverage.run]
omit = ["*examples*"]

filterwarnings =[
# JAX issues an over-eager warning if os.fork() is called when the JAX module is loaded, even if JAX isn't being used
'ignore:os\.fork\(\) was called\.:RuntimeWarning',

# Warning coming from blackjax
'ignore:jax\.tree_map is deprecated:DeprecationWarning',
]

0 comments on commit 41afbd4

Please sign in to comment.