Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarrosop committed Dec 30, 2016
1 parent bb2699d commit 6ea972c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def build_getters_support_matrix(app):
if not (m.startswith('_') or
m in EXCLUDE_METHODS)}

regex_name = re.compile(r"TestGetter::test_(\w+)")
regex_name = re.compile(r"::test_(\w+)")

for filename in glob.iglob('./support/tests/*.json'):
driver = filename.split('/')[-1].split('.')[0]
Expand Down
2 changes: 1 addition & 1 deletion docs/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function process_driver {
pip install -r requirements-dev.txt

set +e
py.test --cov=./ -vs --json=report.json
py.test --cov=./ -vs --json=report.json test/unit/test_getters.py
set -e

cp report.json $TEST_RESULTS_PATH/$1.json
Expand Down

0 comments on commit 6ea972c

Please sign in to comment.