Skip to content

Commit 0176e96

Browse files
committed
Fix ruff
Fix Github actions.yml
1 parent 19c6037 commit 0176e96

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/actions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
uv pip install -e '.[dev]'
3535
- name: mypy
3636
run: |
37-
python -m mypy --ignore-missing-imports --follow-imports=silent --no-strict-optional --exclude dependencies bam_masterdata tests
37+
python -m mypy --ignore-missing-imports --follow-imports=silent --no-strict-optional bam_masterdata tests
3838
- name: Test with pytest
3939
run: |
4040
python -m pytest -sv --ignore=tests/cli --ignore=tests/metadata/test_entities_dict.py tests
@@ -62,11 +62,11 @@ jobs:
6262
- uses: actions/checkout@v4
6363
- uses: chartboost/ruff-action@v1
6464
with:
65-
args: "check . --exclude bam_masterdata/dependencies"
65+
args: "check ."
6666
ruff-formatting:
6767
runs-on: ubuntu-latest
6868
steps:
6969
- uses: actions/checkout@v4
7070
- uses: chartboost/ruff-action@v1
7171
with:
72-
args: "format . --check --verbose --exclude bam_masterdata/dependencies"
72+
args: "format . --check --verbose"

bam_masterdata/cli/cli.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -432,9 +432,6 @@ def checker(file_path, mode, datamodel_path):
432432
f"There are problems when checking the incoming model in {file_path} against the current model {datamodel_path} for entity {entity} that need to be solved"
433433
)
434434

435-
436-
437-
438435
# Check if there are individual repository problems
439436
if (
440437
mode in ["individual"]

0 commit comments

Comments
 (0)