Skip to content

Commit

Permalink
Fix PR tests for python >3.8
Browse files Browse the repository at this point in the history
There seems to be a bug with newer versions of pandas that prevents
kwargs from being passed through the apply function (specifically
passing errors='ignore' to to_numeric in edalize/vivado_reporting.py).
Pinning pandas to v2.0.3 appears to have fixed the issue for now.

I also added GOLDEN_RUN to pass through to tox.
  • Loading branch information
Paul Gatewood committed Oct 6, 2023
1 parent c7e7f0e commit a694fe1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
envlist = py3

[testenv]
deps = pytest
deps =
pytest
pandas==2.0.3
extras = reporting
commands = pytest {posargs}
passenv = GOLDEN_RUN

0 comments on commit a694fe1

Please sign in to comment.