Esempio n. 1
0
def get_windows_conda_build_record_set(tmpdir):
    specs = (
        MatchSpec("conda"),
        MatchSpec("conda-build"),
        MatchSpec("affine"),
        MatchSpec("colour"),
        MatchSpec("uses-spiffy-test-app"),
    )
    with get_solver_5(tmpdir, specs) as solver:
        final_state = solver.solve_final_state()
    return final_state, frozenset(specs)
Esempio n. 2
0
def get_windows_conda_build_record_set():
    specs = (MatchSpec("conda"), MatchSpec("conda-build"), MatchSpec("affine"),
             MatchSpec("colour"), MatchSpec("uses-spiffy-test-app"),)
    with get_solver_5(specs) as solver:
        final_state = solver.solve_final_state()
    return final_state, frozenset(specs)