Skip to content
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
5 changes: 4 additions & 1 deletion .github/workflows/package-verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,16 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 flake8-pyproject ruff
python -m pip install flake8 flake8-pyproject ruff black
- name: Lint with flake8
run: |
flake8 .
- name: Lint with ruff
run: |
ruff check .
- name: Check with black
run: |
black --check .

test:
runs-on: ubuntu-latest
Expand Down
2 changes: 0 additions & 2 deletions tests/units/exceptions/Exception/test_set001__research.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


class TestSet002__usage:
def test_000__research(self):
e = Exception("a\n1")
Expand Down