Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix stuff
  • Loading branch information
liyanhui1228 committed Aug 7, 2017
commit 729c27d1fb2b30e26ed49304014d4bf96afad06e
4 changes: 3 additions & 1 deletion trace/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

from __future__ import absolute_import

import os

import nox


Expand Down Expand Up @@ -41,7 +43,7 @@ def unit_tests(session, python_version):
'--cov-config=.coveragerc',
'--cov-report=',
'--cov-fail-under=97',
'tests/unit',
os.path.join('tests', 'unit'),
*session.posargs
)

Expand Down