We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pandas/pandas/tests/test_downstream.py
Line 60 in ab668b0
that assumes that first python on the PATH is the one running the tests, which it may not be (e.g. if doing ./venv/bin/python
python
./venv/bin/python
We should replace python with something like sys.executable.
sys.executable
The text was updated successfully, but these errors were encountered:
Hmm interesting. Is this causing issues with CI or more of a concern with local configurations?
Sorry, something went wrong.
Probably have a similar issue with the below:
pandas/pandas/tests/plotting/test_converter.py
Line 30 in ab668b0
If possible might be a good idea to set up the executable as a shared fixture
No branches or pull requests
pandas/pandas/tests/test_downstream.py
Line 60 in ab668b0
that assumes that first
python
on the PATH is the one running the tests, which it may not be (e.g. if doing./venv/bin/python
We should replace
python
with something likesys.executable
.The text was updated successfully, but these errors were encountered: