Skip to content

Commit

Permalink
disable linters
Browse files Browse the repository at this point in the history
  • Loading branch information
paulineribeyre committed Sep 24, 2024
1 parent 36826ce commit 53ca092
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
49 changes: 25 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,34 +22,35 @@ jobs:
python-version: '3.9'
use-cache: true

# this creates linter settings and uploads to an artifact so the configs can be pulled and used across jobs
LintConfig:
name: Get Lint Config
uses: uc-cdis/.github/.github/workflows/lint-create-config.yaml@master
with:
python-module-name: "gen3workflow"

RequiredLint:
name: Run Required Linters
needs: [LintConfig]
uses: uc-cdis/.github/.github/workflows/required_lint_check.yaml@master
with:
python-version: '3.9'
use-cache: true

InformationalLint:
name: Run Informational Linters
needs: [LintConfig, UnitTest]
if: github.ref != 'refs/heads/master'
uses: uc-cdis/.github/.github/workflows/optional_lint_check.yaml@master
with:
python-version: '3.9'
use-cache: true
# # this creates linter settings and uploads to an artifact so the configs can be pulled and used across jobs
# LintConfig:
# name: Get Lint Config
# uses: uc-cdis/.github/.github/workflows/lint-create-config.yaml@master
# with:
# python-module-name: "gen3workflow"

# RequiredLint:
# name: Run Required Linters
# needs: [LintConfig]
# uses: uc-cdis/.github/.github/workflows/required_lint_check.yaml@master
# with:
# python-version: '3.9'
# use-cache: true

# InformationalLint:
# name: Run Informational Linters
# needs: [LintConfig, UnitTest]
# if: github.ref != 'refs/heads/master'
# uses: uc-cdis/.github/.github/workflows/optional_lint_check.yaml@master
# with:
# python-version: '3.9'
# use-cache: true

ImageBuildAndPush:
name: Build Image and Push
uses: uc-cdis/.github/.github/workflows/image_build_push.yaml@master
needs: [RequiredLint, Security, UnitTest]
# needs: [Security, UnitTest]
needs: [Security, UnitTest]
with:
BUILD_PLATFORMS: "linux/amd64"
secrets:
Expand Down
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

from gen3workflow.app import get_app
from gen3workflow.config import config
from gen3workflow.routes.ga4gh_tes import get_request_body


# @pytest.fixture(scope="session")
Expand Down

0 comments on commit 53ca092

Please sign in to comment.