conan-io / conan-package-tools

Conan Package Tools. Helps with massive package creation and CI integration (Travis CI, Appveyor...)
MIT License
165 stars 70 forks source link

Unit tests fail with conan >= 1.37.0 #570

Closed ghost closed 2 years ago

ghost commented 3 years ago

Unit tests fail

From 1.37.0 Conan adds two default remotes. The remotes list looks like this:

[Remote(name='conancenter', url='https://center.conan.io', verify_ssl=True, disabled=False), 
 Remote(name='conan-center', url='https://conan.bintray.com', verify_ssl=True, disabled=False)]

The new conancenter remote has been added in 1.37.0.

The tests cpt/test/integration/remotes_test.py only remove the ´conan-center´ remote but not the new conancenter, which results in the remotes list not being empty.

Environment Details

Steps to reproduce (Include if Applicable)

Run unit tests

ghost commented 2 years ago

I think this has been solved by PR https://github.com/conan-io/conan-package-tools/pull/578 and can be closed.

uilianries commented 2 years ago

Thank you!