Skip to content

Commit d7032f8

Browse files
authored
Merge pull request #6184 from bernt-matthias/topic/skip_lint
Add linter exceptions for all linters that are currently failing
2 parents 5706be8 + 9882d51 commit d7032f8

File tree

269 files changed

+436
-12
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

269 files changed

+436
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
echo 'Using ${{ steps.discover.outputs.chunk-count }} chunks (${{ steps.discover.outputs.chunk-list }})'
7676
7777
lint:
78-
name: Check for missing containers
78+
name: Lint tool-list
7979
needs: setup
8080
if: ${{ needs.setup.outputs.repository-list != '' || needs.setup.outputs.tool-list != '' }}
8181
runs-on: ubuntu-latest
@@ -101,9 +101,10 @@ jobs:
101101
id: lint
102102
with:
103103
mode: lint
104+
fail-level: warn
104105
repository-list: ${{ needs.setup.outputs.repository-list }}
105106
tool-list: ${{ needs.setup.outputs.tool-list }}
106-
additional-planemo-options: --biocontainers -s stdio,tests,output,inputs,help,general,command,citations,tool_xsd,xml_order,tool_urls,shed_metadata,urls,readme,shed_yaml,repository_dependencies,tool_dependencies_actions,tool_dependencies_sha256sum,tool_dependencies_xsd,expansion
107+
additional-planemo-options: --biocontainers
107108
- uses: actions/upload-artifact@v4
108109
if: ${{ failure() }}
109110
with:

.github/workflows/pr.yaml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -123,21 +123,12 @@ jobs:
123123
with:
124124
path: ~/.cache/pip
125125
key: pip_cache_py_${{ matrix.python-version }}_gxy_${{ needs.setup.outputs.galaxy-head-sha }}
126-
127-
- name: Set fail level for pull request
128-
if: ${{ github.event_name == 'pull_request' }}
129-
run:
130-
echo "FAIL_LEVEL=warn" >> "$GITHUB_ENV"
131-
- name: Set fail level for merge
132-
if: ${{ github.event_name != 'pull_request' }}
133-
run:
134-
echo "FAIL_LEVEL=error" >> "$GITHUB_ENV"
135126
- name: Planemo lint
136127
uses: galaxyproject/planemo-ci-action@v1
137128
id: lint
138129
with:
139130
mode: lint
140-
fail-level: ${{ env.FAIL_LEVEL }}
131+
fail-level: warn
141132
repository-list: ${{ needs.setup.outputs.repository-list }}
142133
tool-list: ${{ needs.setup.outputs.tool-list }}
143134
- uses: actions/upload-artifact@v4
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CitationsMissing
2+
XMLOrder
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TestsMissing
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
HelpEmpty
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
HelpEmpty
2+
TestsMissing
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CitationsMissing
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CitationsMissing
2+
HelpEmpty
3+
TestsMissing
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CitationsMissing
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CitationsMissing
2+
TestsMissing

0 commit comments

Comments
 (0)