Skip to content

Commit c5351dd

Browse files
Install dev-tools via requirements.txt
Signed-off-by: Abhishek Kumar <[email protected]>
1 parent 5700c80 commit c5351dd

File tree

3 files changed

+5
-15
lines changed

3 files changed

+5
-15
lines changed

etc/conf/requirements_base.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
-r requirements_all.txt
2+
-r dev/requirements_base.txt
23
#-e .

etc/configure.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
bin_dir_name = 'bin'
132132

133133
# set to True to trace command line executaion
134-
TRACE = False
134+
TRACE = True
135135

136136

137137
def call(cmd, root_dir):
@@ -266,6 +266,9 @@ def create_virtualenv(std_python, root_dir, tpp_dirs=(), quiet=False):
266266
vcmd += ['-qq']
267267
# third parties may be in more than one directory
268268
vcmd.extend(build_pip_dirs_args(tpp_dirs, root_dir))
269+
# Window doesn't support link as extra-search-dir
270+
if on_win:
271+
vcmp.pop()
269272
# we create the virtualenv in the root_dir
270273
vcmd.append(quote(root_dir))
271274
call(vcmd, root_dir)

setup.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -206,20 +206,6 @@ def read(*names, **kwargs):
206206
# used by yg.lockfile
207207
'contextlib2', 'pytz', 'tempora', 'jaraco.functools',
208208
'zc.lockfile >= 2.0.0, < 3.0.0',
209-
210-
#Fix Me later
211-
'pytest',
212-
'aboutcode-toolkit',
213-
'apipkg',
214-
'py',
215-
'colorama',
216-
'execnet',
217-
'pytest-xdist',
218-
'bumpversion',
219-
'coverage',
220-
'pytest-rerunfailures',
221-
'pytest-forked',
222-
'pytest-cov',
223209
],
224210

225211
entry_points={

0 commit comments

Comments
 (0)