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

Functioning with new torrentfile version 0.2.0 #50

Merged
merged 3 commits into from
Dec 25, 2021
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
4 changes: 0 additions & 4 deletions .deepsource.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,3 @@ enabled = true

[analyzers.meta]
runtime_version = "3.x.x"

[[transformers]]
name = "isort"
enabled = true
3 changes: 1 addition & 2 deletions .github/workflows/workflow.yml → .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Workflow for python project
name: CI

on: [push, pull_request]

Expand All @@ -14,7 +14,6 @@ jobs:
with:
python-version: 3.9


- name: Codacy Coverage Report
uses: codacy/codacy-coverage-reporter-action@v1.1
with:
Expand Down
12 changes: 5 additions & 7 deletions .prospector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ doc-warnings: true
test-warnings: true
member-warnings: true

bandit:
run: true
options:
config: pyproject.toml

pep257:
run: true
disable:
Expand Down Expand Up @@ -34,12 +39,6 @@ pylint:
disable:
- R1729

bandit:
run: true
assert_used:
skips: ['*_test.py', 'test_*.py']


pyroma:
run: true

Expand All @@ -48,7 +47,6 @@ pyflakes:
disable:
- F401


mccabe:
run: true
disable:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ lint: ## run linters on codebase
prospector tests

test: lint ## run tests quickly with the default Python
pytest tests --cov=torrentfileQt --cov=tests --pylint --maxfail=2
pytest tests --cov=torrentfileQt --cov=tests
coverage report
coverage xml -o coverage.xml
bash codacy.sh report -r coverage.xml
Expand Down
Loading