Skip to content

Commit

Permalink
remove commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
robinholzi committed Dec 4, 2023
1 parent 7337676 commit 1d2bd0f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ jobs:
S3_ENDPOINT: https://s3.sbg.cloud.ovh.net/
S3_REGION: sbg
S3_BUCKET_NAME: quetz
QUETZ_S3_BUCKET_NAME: quetz
run: |
# install dev dependencies
pip install -e .[all,dev]
Expand All @@ -87,7 +86,6 @@ jobs:
S3_ENDPOINT: https://s3.sbg.cloud.ovh.net/
S3_REGION: sbg
S3_BUCKET_NAME: quetz
QUETZ_S3_BUCKET_NAME: quetz
run: |
if [ "$TEST_DB_BACKEND" == "postgres" ]; then
export QUETZ_TEST_DATABASE="postgresql://postgres:mysecretpassword@${POSTGRES_HOST}:${POSTGRES_PORT}/postgres"
Expand All @@ -100,9 +98,6 @@ jobs:
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
Expand Down
1 change: 0 additions & 1 deletion quetz/tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import tempfile

import pytest

from quetz.config import Config, ConfigEntry, ConfigSection, configure_logger
from quetz.dao import Dao
from quetz.errors import ConfigError
Expand Down
3 changes: 0 additions & 3 deletions quetz/tests/test_pkg_stores.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,6 @@ 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

Expand Down

0 comments on commit 1d2bd0f

Please sign in to comment.