Files
pymol-open-source/testing/conftest.py
Thomas Holder 9dcb2091cd Support running all tests with pytest, make --no-mmlibs --no-undo the default (#333)
* Support running all tests with pytest

* Make --no-mmlibs --no-undo the default

These tests seem unsupported by modern PyMOL versions (like 2.5.6), see
https://github.com/schrodinger/pymol-testing/issues/9

Add `--with-mmlibs` and `--with-undo` options to enable these tests.

* Require PyMOL 2.6 for testLoadPLY
2024-01-31 03:10:03 -05:00

9 lines
123 B
Python

import pymol
pymol.__path__.append(".")
pymol.__path__.append("tests/helpers")
collect_ignore = [
"tests/helpers",
]