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
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install build pytest
pip install .

- name: Test with pytest
run: |
python3 -m pytest -s --color=yes -vv tests

- name: Build package
run: python -m build
Expand Down
File renamed without changes.
6 changes: 5 additions & 1 deletion tests/test_something.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
from custom_rules import symbols_to_nuget, parse_cross, parse_cross_any_extenstion
from artifactory_cleanup.rules.base import (
symbols_to_nuget,
parse_cross,
parse_cross_any_extenstion,
)
from artifactory_cleanup.rules.base import CrossPackage


Expand Down