Completed
Push — master ( e9cf11...48b1c5 )
by Rich
01:28
created

pytest_addoption()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
c 1
b 0
f 1
dl 0
loc 3
rs 10
1
#! /usr/bin/env python
2
#
3
# Copyright (C) 2016 Rich Lewis <[email protected]>
4
# License: 3-clause BSD
5
6
"""
7
# file title
8
9
Description
10
"""
11
12
import pytest
13
14
def pytest_addoption(parser):
15
    parser.addoption("--chemaxon", action="store_true",
16
        help="mark tests that fail if no chemaxon provided.")
17