mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-04 20:04:21 +08:00
* 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
9 lines
123 B
Python
9 lines
123 B
Python
import pymol
|
|
|
|
pymol.__path__.append(".")
|
|
pymol.__path__.append("tests/helpers")
|
|
|
|
collect_ignore = [
|
|
"tests/helpers",
|
|
]
|