Skip to content

Commit

Permalink
Debug + adding linting to Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
paulstretenowich committed Jan 24, 2025
1 parent d1327c6 commit 31a0f18
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/PyTest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run PyTest

on:
pull_request:
types: [opened, synchronize, reopened]
branches: ['dev', 'main']
push:
branches: ['main']

jobs:
test-and-lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/[email protected]
with:
python-version: '3.x'

- name: Install dependencies
run: |
pdm install -d -G testing
pdm add pytest flake8
- name: Lint with flake8
run: |
pdm run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude=.venv
pdm run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude=.venv
4 changes: 2 additions & 2 deletions pt_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
GenPipes,
Edit,
Delete,
Undelete,
UnDelete,
Deprecate,
UnDeprecate,
Curate
Expand Down Expand Up @@ -165,7 +165,7 @@ def projects(parsed_local):

Edit(connection_obj=connector_session, subparser=subparser)
Delete(connection_obj=connector_session, subparser=subparser)
Undelete(connection_obj=connector_session, subparser=subparser)
UnDelete(connection_obj=connector_session, subparser=subparser)
Deprecate(connection_obj=connector_session, subparser=subparser)
UnDeprecate(connection_obj=connector_session, subparser=subparser)
Curate(connection_obj=connector_session, subparser=subparser)
Expand Down

0 comments on commit 31a0f18

Please sign in to comment.