Skip to content

Commit

Permalink
Test matrix, debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-fritchman committed Mar 27, 2024
1 parent 64c838f commit 6c5f57b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
pydantic-version: ["==1.9.0", "==2.0", ""]
pydantic-version: ["==1.9.0", "==2.0", "==2.6", ""]
dep-installer: ["dev", "pypi"]
continue-on-error: ${{ matrix.dep-installer == 'pypi' || matrix.python-version == '3.11' }}

Expand Down
7 changes: 7 additions & 0 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,16 @@
Primarily adds the simulator-focused options enabled by `VlsirTools`.
"""

import sys
from pydantic import __version__ as pydantic_version

from vlsirtools.pytest import (
pytest_configure,
pytest_addoption,
pytest_collection_modifyitems,
)

# Print some config info: the interpreter version, and the pydantic version
print("Hdl21 PyTest Configuration")
print("Python " + sys.version)
print("Pydantic " + pydantic_version)

0 comments on commit 6c5f57b

Please sign in to comment.