mirror of https://github.com/pyodide/pyodide.git
13 lines
487 B
Python
13 lines
487 B
Python
|
def test_pytest(selenium):
|
||
|
selenium.load_package('pytest')
|
||
|
selenium.load_package('numpy')
|
||
|
selenium.load_package('nose')
|
||
|
selenium.run('from pathlib import Path')
|
||
|
selenium.run('import os')
|
||
|
selenium.run('import numpy')
|
||
|
selenium.run('base_dir = Path(numpy.__file__).parent / "core" / "tests"')
|
||
|
selenium.run("import pytest;"
|
||
|
"pytest.main([base_dir / 'test_api.py'])")
|
||
|
logs = '\n'.join(selenium.logs)
|
||
|
assert 'INTERNALERROR' not in logs
|