From 4b96cb26cd3b30a493201e90c0b99bc1aa5b0cd5 Mon Sep 17 00:00:00 2001 From: fernandocrz Date: Thu, 21 Sep 2023 16:24:48 -0300 Subject: [PATCH] add input files for parse_requirements test --- tests/_data/empty.txt | 0 tests/_data/imports.txt | 3 +++ tests/_data/imports_any_version.txt | 4 ++++ tests/_data/imports_no_version.txt | 3 +++ 4 files changed, 10 insertions(+) create mode 100644 tests/_data/empty.txt create mode 100644 tests/_data/imports.txt create mode 100644 tests/_data/imports_any_version.txt create mode 100644 tests/_data/imports_no_version.txt diff --git a/tests/_data/empty.txt b/tests/_data/empty.txt new file mode 100644 index 0000000..e69de29 diff --git a/tests/_data/imports.txt b/tests/_data/imports.txt new file mode 100644 index 0000000..7180017 --- /dev/null +++ b/tests/_data/imports.txt @@ -0,0 +1,3 @@ +pandas==2.0.0 +numpy>=1.2.3 +torch<4.0.0 \ No newline at end of file diff --git a/tests/_data/imports_any_version.txt b/tests/_data/imports_any_version.txt new file mode 100644 index 0000000..575ff64 --- /dev/null +++ b/tests/_data/imports_any_version.txt @@ -0,0 +1,4 @@ +numpy +pandas==2.0.0 +tensorflow +torch<4.0.0 \ No newline at end of file diff --git a/tests/_data/imports_no_version.txt b/tests/_data/imports_no_version.txt new file mode 100644 index 0000000..571d829 --- /dev/null +++ b/tests/_data/imports_no_version.txt @@ -0,0 +1,3 @@ +pandas +tensorflow +torch \ No newline at end of file