-
Notifications
You must be signed in to change notification settings - Fork 125
TST: use nox for testing #160
New issue
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
Conversation
nox.py
Outdated
import nox | ||
|
||
|
||
PANDAS_PRE_WHEELS='https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E501 line too long (103 > 79 characters)
nox.py
Outdated
import nox | ||
|
||
|
||
PANDAS_PRE_WHEELS = 'https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E501 line too long (103 > 79 characters)
The reason is that nox isn't playing nice with conda. "Could not find _remove_dead_weakref"
029b1f2
to
81306a7
Compare
@maxim-lian I think I finally fixed the busted tests. 😤 https://travis-ci.org/pydata/pandas-gbq/builds/363360912 Full integration tests still running at https://travis-ci.org/tswast/pandas-gbq/builds/363360902 I think the issue before was that there is some conflict between installing packages via pip and installing packages via conda. Somehow a bad version of the The new setup uses |
I couldn't actually reproduce the test failures introduced in #158 locally. My hope is that by using
nox
(liketox
, but configurable via Python code) the more isolated environments will fix whatever error with mocks we're getting.A step towards #52.