Skip to content

Commit

Permalink
remove codecov (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
memsharded authored Mar 23, 2020
1 parent 81f6ea2 commit 7a237c4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions resources/org/jfrog/conanci/python_runner/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def run_tests(module_path, pyver, source_folder, tmp_folder, flavor, excluded_ta
debug_traces = "" # "--debug=nose,nose.result" if platform.system() == "Darwin" and pyver != "py27" else ""
# pyenv = "/usr/local/bin/python2"
multiprocess = ("--processes=%s --process-timeout=1000 "
"--process-restartworker --with-coverage" % num_cores) if platform.system() != "Darwin" else ""
"--process-restartworker" % num_cores) if platform.system() != "Darwin" else ""

if num_cores <= 1:
multiprocess = ""
Expand All @@ -65,9 +65,7 @@ def run_tests(module_path, pyver, source_folder, tmp_folder, flavor, excluded_ta
"{multiprocess} " \
"{debug_traces} " \
"{traverse_namespace} " \
"--with-xunit " \
"&& codecov -t f1a9c517-3d81-4213-9f51-61513111fc28".format(
**{"module_path": module_path,
"--with-xunit ".format(**{"module_path": module_path,
"pyenv": pyenv,
"tags_str": tags_str,
"venv_dest": venv_dest,
Expand Down

0 comments on commit 7a237c4

Please sign in to comment.