Commit a34d18c0 authored by Roman Yurchak's avatar Roman Yurchak

Revert "Add test/test_numpy_suite_numeric.py"

This reverts commit 3ff79f6a.
parent b9ad36fd
def test_numpy(selenium_standalone):
selenium = selenium_standalone
selenium.load_package('pytest')
selenium.load_package('numpy')
selenium.load_package('nose')
selenium.run('from pathlib import Path')
selenium.run('import numpy')
selenium.run('import pytest')
selenium.run('base_dir = Path(numpy.__file__).parent')
try:
selenium.run("pytest.main(['--continue-on-collection-errors', '-v',"
" base_dir / 'core/tests/test_numeric.py'])")
except Exception as exc: # noqa
print('Exception', print(exc))
print('# Logs')
logs = '\n'.join(selenium.logs)
print(logs)
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