1
0
mirror of https://github.com/TheLocehiliosan/yadm synced 2026-03-02 03:49:29 +00:00

Bump versions of required linters

This commit is contained in:
Tim Byrne
2020-12-21 15:30:28 -06:00
parent 80d8949850
commit c8d516c67d
6 changed files with 35 additions and 26 deletions

View File

@@ -1,5 +1,5 @@
PYTESTS = $(wildcard test/test_*.py)
IMAGE = yadm/testbed:2020-07-08
IMAGE = yadm/testbed:2020-12-21
.PHONY: all
all:
@@ -146,16 +146,16 @@ testenv:
@echo
python3 -m venv --clear testenv
testenv/bin/pip3 install --upgrade pip setuptools
testenv/bin/pip3 install --upgrade \
flake8==3.7.8 \
pylint==2.4.1 \
pytest==5.1.3 \
yamllint==1.17.0 \
;
testenv/bin/pip3 install --upgrade -r test/requirements.txt;
@echo
@echo 'To activate this test environment type:'
@echo ' source testenv/bin/activate'
.PHONY: image
image:
@docker build -f test/Dockerfile . -t "$(IMAGE)"
.PHONY: man
man:
@groff -man -Tascii ./yadm.1 | less