@@ -329,75 +329,6 @@ def test_python_install_extra_requirements_empty(tmpdir, value):
329
329
assertValidConfig (tmpdir , content .format (value = value ))
330
330
331
331
332
- @pytest .mark .parametrize ('pipfile' , ['another_docs/' , '.' , 'project/' ])
333
- def test_python_install_pipfile (tmpdir , pipfile ):
334
- utils .apply_fs (
335
- tmpdir , {
336
- 'another_docs' : {
337
- 'Pipfile' : '' ,
338
- },
339
- 'project' : {},
340
- 'Pipfile' : '' ,
341
- },
342
- )
343
- content = '''
344
- version: "2"
345
- python:
346
- install:
347
- - pipfile: {}
348
- '''
349
- assertValidConfig (tmpdir , content .format (pipfile ))
350
-
351
-
352
- @pytest .mark .parametrize ('pipfile' , ['docs/' , '.' , 'project/' ])
353
- def test_python_install_pipfile_invalid (tmpdir , pipfile ):
354
- utils .apply_fs (tmpdir , {})
355
- content = '''
356
- version: "2"
357
- python:
358
- install:
359
- - pipfile: {}
360
- '''
361
- content .format (pipfile )
362
- assertInvalidConfig (tmpdir , content , ['is not a path' ])
363
-
364
-
365
- @pytest .mark .parametrize ('value' , ['true' , 'false' ])
366
- def test_python_install_pipfile_dev (tmpdir , value ):
367
- content = '''
368
- version: "2"
369
- python:
370
- install:
371
- - pipfile: .
372
- dev: {value}
373
- '''
374
- assertValidConfig (tmpdir , content .format (value = value ))
375
-
376
-
377
- @pytest .mark .parametrize ('value' , ['true' , 'false' ])
378
- def test_python_install_pipfile_skip_lock (tmpdir , value ):
379
- content = '''
380
- version: "2"
381
- python:
382
- install:
383
- - pipfile: .
384
- skip_lock: {value}
385
- '''
386
- assertValidConfig (tmpdir , content .format (value = value ))
387
-
388
-
389
- @pytest .mark .parametrize ('value' , ['true' , 'false' ])
390
- def test_python_install_pipfile_ignore_pipfile (tmpdir , value ):
391
- content = '''
392
- version: "2"
393
- python:
394
- install:
395
- - pipfile: .
396
- ignore_pipfile: {value}
397
- '''
398
- assertValidConfig (tmpdir , content .format (value = value ))
399
-
400
-
401
332
@pytest .mark .parametrize ('value' , ['true' , 'false' ])
402
333
def test_python_system_packages (tmpdir , value ):
403
334
content = '''
0 commit comments