Skip to content

Commit

Permalink
move failing package_cache_data tests to integration
Browse files Browse the repository at this point in the history
  • Loading branch information
msarahan committed May 13, 2019
1 parent 304592d commit 73308b6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/core/test_package_cache_data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import json
from os.path import abspath, basename, dirname, join

import pytest

from conda.base.constants import PACKAGE_CACHE_MAGIC_FILE
from conda.base.context import conda_tests_ctxt_mgmt_def_pol
from conda.common.io import env_vars
Expand Down Expand Up @@ -108,6 +110,7 @@ def test_tar_bz2_in_pkg_cache_used_instead_of_conda_pkg():
assert urls_text[0] == zlib_tar_bz2_prec.url


@pytest.mark.integration
def test_tar_bz2_in_pkg_cache_doesnt_overwrite_conda_pkg():
"""
Test that if a .tar.bz2 package is downloaded and extracted in a package cache, the
Expand Down Expand Up @@ -163,6 +166,7 @@ def test_tar_bz2_in_pkg_cache_doesnt_overwrite_conda_pkg():
assert urls_text[1] == zlib_conda_prec.url


@pytest.mark.integration
def test_conda_pkg_in_pkg_cache_doesnt_overwrite_tar_bz2():
"""
Test that if a .conda package is downloaded and extracted in a package cache, the
Expand Down

0 comments on commit 73308b6

Please sign in to comment.