(tmp_path)
| 61 | |
| 62 | |
| 63 | def test_conda_additional_deps(tmp_path): |
| 64 | _make_local_repo(tmp_path) |
| 65 | |
| 66 | ret = run_language( |
| 67 | tmp_path, |
| 68 | conda, |
| 69 | 'python -c "import botocore; print(1)"', |
| 70 | deps=('botocore',), |
| 71 | ) |
| 72 | assert ret == (0, b'1\n') |
nothing calls this directly
no test coverage detected