Skip to content

Commit 8a6368b

Browse files
author
Patrick Vogel
committed
Removed more shit
1 parent b266ec5 commit 8a6368b

File tree

4 files changed

+1
-18
lines changed

4 files changed

+1
-18
lines changed

Diff for: .github/workflows/python-test.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ jobs:
2323
- name: Lint with flake8
2424
run: |
2525
pip install flake8
26-
flake8 . --max-line-length=100 --ignore=F401, W503
27-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=100 --statistics
26+
flake8 . --exit-zero --max-line-length=100 --ignore=F401,W503 --max-complexity=10 --max-line-length=100
2827
- name: Test with unittest
2928
run: |
3029
coverage run setup.py test

Diff for: config/.pre-commit-config.yaml

-11
This file was deleted.

Diff for: config/install.sh

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Run from the root directory with ./config/install.sh
2-
# Note that pre-commit is not in the requirements.txt, as we don't want this to ship with the package.
32

43
python -m venv env
54
source env/bin/activate
65
pip install -r requirements-dev.txt
7-
cd config || exit
8-
pre-commit install
9-
cd ..

Diff for: requirements-dev.txt

-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
-r requirements.txt
33

44
# ... and install more
5-
pre-commit
65
requests
76
codecov

0 commit comments

Comments
 (0)