Skip to content
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

Avoid sys.modules hackery that was causing a NumPy-related test to fail. #443

Merged
merged 2 commits into from
Feb 15, 2019

Conversation

mdickinson
Copy link
Member

There was an awkward test that needed to, in order, (1) try importing numpy to see whether the test should run at all, then (2) import traits.traits_types in an environment where numpy wasn't already imported. We were doing that by clearing out numpy-related entries in sys.modules, and that went wrong in #441. This PR replaces that test by one which runs the necessary imports in a subprocess, uncontaminated by previous NumPy imports.

Fixes #441

@codecov-io
Copy link

Codecov Report

Merging #443 into master will increase coverage by 0.14%.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #443      +/-   ##
==========================================
+ Coverage   64.71%   64.85%   +0.14%     
==========================================
  Files          44       44              
  Lines        7130     7130              
  Branches     1418     1418              
==========================================
+ Hits         4614     4624      +10     
+ Misses       2092     2083       -9     
+ Partials      424      423       -1
Impacted Files Coverage Δ
traits/etsconfig/etsconfig.py 63.58% <0%> (+6.17%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update ef5313d...424ccba. Read the comment docs.

@mdickinson
Copy link
Member Author

Self-merging after another self-review; (assessing this as low-risk, since it only touches a test).

@mdickinson mdickinson merged commit 1f38a2f into master Feb 15, 2019
@mdickinson mdickinson deleted the fix/dont-mess-with-sys-modules branch February 15, 2019 13:33
@rahulporuri rahulporuri added this to the After 5.0.0 release milestone Apr 15, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Test failure in test_numpy_validators_loaded_if_numpy_present
3 participants