• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

safe-global / safe-config-service / 6224542909

18 Sep 2023 03:16PM UTC coverage: 99.88%. Remained the same
6224542909

push

github

web-flow
Bump docker/setup-buildx-action from 2.10.0 to 3.0.0 (#958)

Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2.10.0 to 3.0.0.
- [Release notes](https://github.com/docker/setup-buildx-action/releases)
- [Commits](https://github.com/docker/setup-buildx-action/compare/v2.10.0...v3.0.0)

---
updated-dependencies:
- dependency-name: docker/setup-buildx-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

4177 of 4182 relevant lines covered (99.88%)

1.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/chains/apps.py
1
from django.apps import AppConfig
1✔
2
from django.conf import settings
1✔
3
from django.core.exceptions import ImproperlyConfigured
1✔
4

5

6
def _validate_storage_setup() -> None:
1✔
7
    if (
8
        settings.DEFAULT_FILE_STORAGE == "storages.backends.s3boto3.S3Boto3Storage"
1✔
9
        and settings.AWS_ACCESS_KEY_ID is None
1✔
10
        and settings.AWS_SECRET_ACCESS_KEY is None
1✔
11
        and settings.AWS_STORAGE_BUCKET_NAME is None
1✔
12
    ):
13
        raise ImproperlyConfigured("Storage set to S3 but AWS is not configured")
1✔
14

15

16
class AppsConfig(AppConfig):
1✔
17
    default_auto_field = "django.db.models.BigAutoField"
1✔
18
    name = "chains"
1✔
19

20
    def ready(self) -> None:
1✔
21
        import chains.signals  # noqa: F401
1✔
22

23
        # This application depends on S3 configuration (if set)
24
        # so we validate if its django.conf.settings contains the required parameters
25
        _validate_storage_setup()
1✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc