-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTaskfile.yml
77 lines (58 loc) · 1.16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
version: "3"
#
# global vars: https://taskfile.dev/#/usage?id=variables
#
vars:
VAR1: "some-var"
# global env:
env:
ENV1: testing
################################################################################################
tasks:
run01:
cmds:
- |
poetry run python \
src/try_selenium/run01.py
run02:
cmds:
- mkdir dist/
- |
poetry run python \
src/try_selenium/run02.py
ignore_error: true
r6:
cmds:
- poetry run python src/try_selenium/run06.py
r5:
cmds:
- poetry run python src/try_selenium/run05.py
r4:
cmds:
- |
poetry run python \
src/try_selenium/run04.py
help:
cmds:
- poetry run python -m selenium --help
poetry:
aliases: [ 'p', 'pm' ]
cmds:
- poetry {{.CLI_ARGS}} # install, update
install:
aliases: [ 'i' ]
cmds:
- poetry install
- which python
- poetry python -V
h:
cmds:
- poetry env info
- poetry env list
add:
aliases: [ 'a' ]
cmds:
- poetry add {{.CLI_ARGS}} # --dev
add:all:
cmds:
- poetry add "typer[all]" selenium