diff options
author | Rodolfo Carvalho <rhcarvalho@gmail.com> | 2017-02-19 22:05:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-19 22:05:59 +0100 |
commit | 3ba41f17f7ea7d05a291a59f4d22b31ba159579b (patch) | |
tree | bc73cffbf701af3f8a2695bc26fc634f7f669018 /setup.cfg | |
parent | 4653f96dd2612c9d4d580637a7f99d41fad8b46e (diff) | |
parent | fd7c9750cc344ae48abfc48c13f1b1d84ef077b8 (diff) | |
download | openshift-3ba41f17f7ea7d05a291a59f4d22b31ba159579b.tar.gz openshift-3ba41f17f7ea7d05a291a59f4d22b31ba159579b.tar.bz2 openshift-3ba41f17f7ea7d05a291a59f4d22b31ba159579b.tar.xz openshift-3ba41f17f7ea7d05a291a59f4d22b31ba159579b.zip |
Merge pull request #3414 from rhcarvalho/fix-missing-unit-tests-ci
Fix missing unit tests in CI
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -5,12 +5,15 @@ universal=1 [nosetests] -tests=roles/openshift_master_facts/test/, test/ +tests=roles/lib_openshift/src/test/unit, + roles/lib_utils/src/test/unit, + roles/openshift_master_facts/test, + test verbosity=2 with-coverage=1 cover-html=1 cover-inclusive=1 -cover-min-percentage=70 +cover-min-percentage=25 cover-erase=1 detailed-errors=1 cover-branches=1 |