1 | #! /usr/bin/env python |
||
2 | # |
||
3 | # Copyright (C) 2016 Rich Lewis <[email protected]> |
||
4 | # License: 3-clause BSD |
||
5 | |||
6 | 1 | """ |
|
7 | # conftest |
||
8 | |||
9 | Configuring pytest for scikit-chem. |
||
10 | """ |
||
11 | |||
12 | 1 | def pytest_addoption(parser): |
|
13 | 1 | parser.addoption('--with-chemaxon', action='store_true', |
|
14 | help='mark tests that fail if no chemaxon provided.') |
||
15 | |||
16 | parser.addoption('--run-slow', action='store_true', |
||
17 | help='mark tests that take a while to run.') |