Skip to content

Commit

Permalink
Merge branch 'release/0.25.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
lasote committed Mar 29, 2019
2 parents b64b11e + 6eaa486 commit 102a731
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cpt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

__version__ = '0.25.0'
__version__ = '0.25.1'
NEWEST_CONAN_SUPPORTED = "1.15.0-dev"
3 changes: 2 additions & 1 deletion cpt/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ def __init__(self, profile_abs_path, reference, conan_api, uploader,
self._upload_dependencies = upload_dependencies.split(",") if \
isinstance(upload_dependencies, str) else \
upload_dependencies
self._upload_dependencies = self._upload_dependencies or []

patch_default_base_profile(conan_api, profile_abs_path)

Expand Down Expand Up @@ -176,7 +177,7 @@ def __init__(self, profile_text, base_profile_text, base_profile_name, reference
self._test_folder = test_folder
self._pip_install = pip_install
self._config_url = config_url
self._upload_dependencies = upload_dependencies
self._upload_dependencies = upload_dependencies or []
self._conanfile = conanfile

def _pip_update_conan_command(self):
Expand Down
2 changes: 1 addition & 1 deletion cpt/test/integration/docker_test.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import subprocess
import unittest

import time

from conans import __version__ as client_version
Expand Down Expand Up @@ -120,6 +119,7 @@ def test_docker_run_options(self):
class Pkg(ConanFile):
settings = "os", "compiler", "build_type", "arch"
requires = "zlib/1.2.11@conan/stable"
def build(self):
pass
Expand Down
2 changes: 2 additions & 0 deletions cpt/test/test_client/upload_checks_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class Pkg(ConanFile):
def build(self):
self.output.warn("HALLO")
"""

def setUp(self):
self._ci_manager = MockCIManager()

Expand Down Expand Up @@ -318,6 +319,7 @@ def test_upload_regex_dependencies(self):
build_policy="missing",
exclude_vcvars_precommand=True,
ci_manager=self._ci_manager)

mulitpackager.add({}, {})
mulitpackager.run()

Expand Down

0 comments on commit 102a731

Please sign in to comment.