Skip to content

Commit

Permalink
Ignore flax tests for Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
brentyi committed Sep 21, 2022
1 parent f7e4844 commit 9c133bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
if sys.version_info.major == 3 and sys.version_info.minor == 7:
collect_ignore_glob.append("*_ignore_py37.py")

if sys.version_info.major == 3 and sys.version_info.minor == 10:
collect_ignore_glob.append("*_ignore_py310.py")

if not (sys.version_info.major == 3 and sys.version_info.minor == 10):
collect_ignore_glob.append("*_only_py310.py")
File renamed without changes.

0 comments on commit 9c133bf

Please sign in to comment.