-
Notifications
You must be signed in to change notification settings - Fork 2
/
Taskfile.yml
53 lines (43 loc) · 1.14 KB
/
Taskfile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# https://taskfile.dev
version: "3"
vars:
VENV: .venv
PYTHON: "{{.VENV}}/bin/python"
tasks:
####################################################################################
### Install
####################################################################################
install:
deps: [poetry]
upgrade:
summary: Updates dependencies to the latest available version
cmds:
- poetry update
poetry:
deps: [virtualenv]
preconditions:
- command -v poetry
cmds:
- poetry install
sources:
- pyproject.toml
- poetry.lock
virtualenv:
summary: Create a Python 3 virtualenv
cmds:
- python3 -m venv {{.VENV}}
status:
- test -d {{.VENV}}
######################################################################################
### Build
######################################################################################
lint:
summary: Apply code quality constraints to the code
deps: [poetry]
cmds:
- pre-commit run --all-files
test:
summary: Run unit tests
deps: [poetry]
cmds:
- "{{.PYTHON}} -m unittest test/*.py"