Skip to content

Commit

Permalink
Pre release push - fixup and new tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TGWolf committed May 14, 2024
1 parent c69fdf2 commit de6942b
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 35 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/security.yml

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/test-action-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,22 @@ jobs:
highest-only: true
remove-patch-version: true

test-output-method-max-versions-strip-patch:
name: Highest version only (Strip Patch)
runs-on: ubuntu-latest
outputs:
highest-version: ${{ steps.get-versions.outputs.latest-versions }}
steps:
- name: Checkout the repository
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Get versions
uses: ./
id: get-versions
with:
language: python
max-versions: 3
remove-patch-version: true

test-output-method-load-highest-only-strip-patch:
name: Build for highest version only (Strip Patch)
needs: test-output-method-setup-highest-only-strip-patch
Expand All @@ -125,6 +141,7 @@ jobs:
- test-output-method-load
- test-output-method-load-eol
- test-output-method-load-highest-only
- test-output-method-max-versions-strip-patch
- test-output-method-load-highest-only-strip-patch
runs-on: ubuntu-latest
steps:
Expand Down
13 changes: 13 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[MESSAGES CONTROL]
disable=unknown-option-value,
global-statement,
invalid-name,
line-too-long,
unnecessary-pass,
broad-exception-caught,
broad-exception-raised,
# Version 3.9.*
broad-except,
unsupported-binary-operation,
# Version 3.8.*
unsubscriptable-object

0 comments on commit de6942b

Please sign in to comment.