We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be great if there were some way to make output comparison of a cell conditional, like how in a regular test one can write:
@pytest.mark.skipif(sys.version_info < (3, 5))
or
@pytest.mark.xfail(distutils.version.LooseVersion(sympy.__version__) < '1.5')
I'd be happy to help put together a PR to do this, but I don't really know where to start.
The text was updated successfully, but these errors were encountered:
Is possible to make notebooks aware of other pytest flags? For example:
pytest
pytest my_package --reference-data=/path/to/reference/data
where --reference-data points to a folder with required files to run the tests.
--reference-data
Sorry, something went wrong.
No branches or pull requests
It would be great if there were some way to make output comparison of a cell conditional, like how in a regular test one can write:
@pytest.mark.skipif(sys.version_info < (3, 5))
or
@pytest.mark.xfail(distutils.version.LooseVersion(sympy.__version__) < '1.5')
I'd be happy to help put together a PR to do this, but I don't really know where to start.
The text was updated successfully, but these errors were encountered: