Skip to content

Commit

Permalink
Testing: Activate XRD archive download test on integration. rucio#2311
Browse files Browse the repository at this point in the history
The dependency commit was merged.
  • Loading branch information
rcarpa committed Mar 1, 2021
1 parent 2d6bf5d commit d32b21d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/integration_tests.yml
Expand Up @@ -74,6 +74,8 @@ jobs:
docker exec -t dev_rucio_1 tools/run_tests_docker.sh -ir
- name: File Upload/Download Test
run: docker exec -t dev_rucio_1 python -bb -m pytest -vvvrxs lib/rucio/tests/test_rucio_server.py
- name: Archive Upload/Download Test
run: docker exec -t dev_rucio_1 python -bb -m pytest -vvvrxs lib/rucio/tests/test_download.py::TestDownloadClient::test_download_from_archive_on_xrd
- name: Test Protocol XrootD
run: docker exec -t dev_rucio_1 python -bb -m pytest -vvvrxs lib/rucio/tests/test_rse_protocol_xrootd.py
- name: Stop containers
Expand Down
4 changes: 2 additions & 2 deletions lib/rucio/tests/test_download.py
Expand Up @@ -40,7 +40,7 @@
from rucio.common.utils import generate_uuid
from rucio.rse import rsemanager as rsemgr
from rucio.rse.protocols.posix import Default as PosixProtocol
from rucio.tests.common import file_generator
from rucio.tests.common import file_generator, skip_rse_tests_with_accounts


class TestDownloadClient(unittest.TestCase):
Expand Down Expand Up @@ -206,7 +206,7 @@ def test_download_multiple(self):
],
)

@pytest.mark.xfail(reason='XRD1 must be initialized https://github.com/rucio/rucio/pull/4165/')
@skip_rse_tests_with_accounts
def test_download_from_archive_on_xrd(self):
scope = 'test'
rse = 'XRD1'
Expand Down

0 comments on commit d32b21d

Please sign in to comment.