You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I was looking at the failing test in test_arca_render and at first, I also had no clue what the problem is... But then after crawling through the logs and some experiments, I found the issue: the test is being run with arca.backend.CurrentEnvironmentBackend and the current environment has got naucse-render installed.
I really struggled to find why the hell CurrentEnvironmentBackend is used even though VenvBackend is configured in the tests (and even when I set the environ variable), but I finally found it in pytest.ini, the environ there overrides the VenvBackend in tests and even the backend provided in CLI.
I'm not exactly sure what backend you actually want to run it with so I'm not making a PR.
Also, just as a heads up, VenvBackend does not work on Travis (travis-ci/travis-ci#8589, issue closed because it was stale, but AFAIK still not resolved)
The text was updated successfully, but these errors were encountered:
So I was looking at the failing test in
test_arca_render
and at first, I also had no clue what the problem is... But then after crawling through the logs and some experiments, I found the issue: the test is being run witharca.backend.CurrentEnvironmentBackend
and the current environment has gotnaucse-render
installed.I really struggled to find why the hell
CurrentEnvironmentBackend
is used even thoughVenvBackend
is configured in the tests (and even when I set the environ variable), but I finally found it inpytest.ini
, the environ there overrides theVenvBackend
in tests and even the backend provided in CLI.I'm not exactly sure what backend you actually want to run it with so I'm not making a PR.
Also, just as a heads up,
VenvBackend
does not work on Travis (travis-ci/travis-ci#8589, issue closed because it was stale, but AFAIK still not resolved)The text was updated successfully, but these errors were encountered: