From df87e8083e8e94469444c9b3a7026eea2aa82059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 20 Jun 2023 16:28:15 +0200 Subject: [PATCH] xxx WIP --- tests/framework/cli/micropkg/test_micropkg_requirements.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/framework/cli/micropkg/test_micropkg_requirements.py b/tests/framework/cli/micropkg/test_micropkg_requirements.py index 3e01513972..845f08c0d2 100644 --- a/tests/framework/cli/micropkg/test_micropkg_requirements.py +++ b/tests/framework/cli/micropkg/test_micropkg_requirements.py @@ -81,6 +81,9 @@ def test_existing_complex_project_requirements_txt( self, fake_project_cli, fake_metadata, fake_package_path, fake_repo_path ): """Pipeline requirements.txt and project requirements.txt.""" + # FIXME: This assumes that requirements live in `requirements.txt`, + # but in the new project template they are split + # between `pyproject.toml` (library deps) and `requirements.txt` (development deps) project_requirements_txt = fake_repo_path / "requirements.txt" with open(project_requirements_txt, "a", encoding="utf-8") as file: file.write(COMPLEX_REQUIREMENTS)