Skip to content

simplify including/excluding writer tests

Wout De Nolf requested to merge remove_pytest_writer_mark into master

Before I had

  • to exclude the nexus writer tests: pytest
  • to select only the writer tests: pytest -m writer --runwritertests

I don't remember why I made that so complicated. We can just specify the directories

  • to exclude the nexus writer tests: pytest tests --ignore tests/nexus_writer
  • to select only the writer tests: pytest tests/nexus_writer

Merge request reports