diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9127eb95..cae3f83c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,6 +99,10 @@ jobs: fi export QUETZ_IS_TEST=1 + + echo "S3_BUCKET_NAME: $S3_BUCKET_NAME" + echo "QUETZ_S3_BUCKET_NAME: $QUETZ_S3_BUCKET_NAME" + pytest -v ./quetz/tests/ --cov-config=pyproject.toml --cov=. --cov-report=xml - name: Test the plugins diff --git a/quetz/tests/test_pkg_stores.py b/quetz/tests/test_pkg_stores.py index 48d41955..48af655b 100644 --- a/quetz/tests/test_pkg_stores.py +++ b/quetz/tests/test_pkg_stores.py @@ -156,6 +156,9 @@ def test_remove_dirs(any_store, channel_name): @pytest.fixture def s3_store(): + print(">>> s3_config", s3_config) + print(">>> s3_config.bucket_name", s3_config.get("bucket_name")) + print(">>> s3_config | os.environ", os.environ) pkg_store = S3Store(s3_config) return pkg_store