Skip to content

Commit

Permalink
Update tests/test_cli_compile.py
Browse files Browse the repository at this point in the history
Co-authored-by: Albert Tugushev <albert@tugushev.ru>
  • Loading branch information
2 people authored and Sergei Zobov committed Sep 5, 2023
1 parent 91a339f commit e9105f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_cli_compile.py
Expand Up @@ -2603,7 +2603,8 @@ def test_error_in_pyproject_toml(fake_dists, runner, make_module, capfd):
cli, ["-n", "--no-build-isolation", "-v", "--find-links", fake_dists, meta_path]
)
assert out.exit_code == 2, out.stderr
assert "`project` must contain ['name'] properties" in capfd.readouterr().err
captured = capfd.readouterr()
assert "`project` must contain ['name'] properties" in captured.err


@pytest.mark.network
Expand Down

0 comments on commit e9105f3

Please sign in to comment.