Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debug + adding linting to Actions #32

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/setup-pdm@v4.1
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
Loading