File tree 5 files changed +10
-5
lines changed
5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -26,4 +26,4 @@ python:
26
26
- method : pip
27
27
path : .
28
28
extra_requirements :
29
- - testing
29
+ - dev
Original file line number Diff line number Diff line change @@ -13,8 +13,13 @@ PYTHON_EXE?=python3
13
13
VENV =venv
14
14
ACTIVATE? =. ${VENV}/bin/activate;
15
15
16
+
17
+ conf :
18
+ @echo " -> Install dependencies"
19
+ ./configure
20
+
16
21
dev :
17
- @echo " -> Configure the development envt. "
22
+ @echo " -> Configure and install development dependencies "
18
23
./configure --dev
19
24
20
25
doc8 :
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ CLI_ARGS=$1
29
29
30
30
# Requirement arguments passed to pip and used by default or with --dev.
31
31
REQUIREMENTS=" --editable . --constraint requirements.txt"
32
- DEV_REQUIREMENTS=" --editable .[testing ] --constraint requirements.txt --constraint requirements-dev.txt"
32
+ DEV_REQUIREMENTS=" --editable .[dev ] --constraint requirements.txt --constraint requirements-dev.txt"
33
33
34
34
# where we create a virtualenv
35
35
VIRTUALENV_DIR=venv
Original file line number Diff line number Diff line change 27
27
28
28
@ rem # Requirement arguments passed to pip and used by default or with --dev.
29
29
set " REQUIREMENTS = --editable . --constraint requirements.txt"
30
- set " DEV_REQUIREMENTS = --editable .[testing ] --constraint requirements.txt --constraint requirements-dev.txt"
30
+ set " DEV_REQUIREMENTS = --editable .[dev ] --constraint requirements.txt --constraint requirements-dev.txt"
31
31
32
32
@ rem # where we create a virtualenv
33
33
set " VIRTUALENV_DIR = venv"
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ where = src
48
48
49
49
50
50
[options.extras_require]
51
- testing =
51
+ dev =
52
52
pytest >= 6, != 7.0.0
53
53
pytest-xdist >= 2
54
54
aboutcode-toolkit >= 7.0.2
You can’t perform that action at this time.
0 commit comments