Commit 38f839df authored by Michael Droettboom's avatar Michael Droettboom Committed by GitHub

Merge pull request #94 from rth/skip-compile-and-configure

Skip compile and configure cases during numpy build
parents efac715e 4d7ce3f3
......@@ -39,7 +39,8 @@ Install the following dependencies into the default Python installation:
`pip install pytest selenium pytest-instafail`
Install [geckodriver](https://github.com/mozilla/geckodriver/releases) somewhere
Install [geckodriver](https://github.com/mozilla/geckodriver/releases) and
[chromedriver](https://sites.google.com/a/chromium.org/chromedriver/downloads) somewhere
on your `PATH`.
`make test`
......
......@@ -104,6 +104,8 @@ def handle_command(line, args):
for arg in line:
if r'/file.c' in arg or '_configtest' in arg:
return
if re.match('/tmp/.*/source\.[bco]+', arg):
return
if arg == '-print-multiarch':
return
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment