diff --git a/tests/utils/installation-client.shtest b/tests/utils/installation-client.shtest deleted file mode 100644 index 35415e14..00000000 --- a/tests/utils/installation-client.shtest +++ /dev/null @@ -1,8 +0,0 @@ -# Check that installation using the client requirements works properly. -# -# RUN: rm -rf %t.venv -# RUN: python -m venv %t.venv -# RUN: cd %{src_root} -# RUN: %t.venv/bin/python -m pip install -r requirements.client.txt -# RUN: rm -rf %t.installation -# RUN: %t.venv/bin/lnt create %t.installation diff --git a/tests/utils/installation-server.shtest b/tests/utils/installation-server.shtest deleted file mode 100644 index dbac3ed3..00000000 --- a/tests/utils/installation-server.shtest +++ /dev/null @@ -1,8 +0,0 @@ -# Check that installation using the server requirements works properly. -# -# RUN: rm -rf %t.venv -# RUN: python -m venv %t.venv -# RUN: cd %{src_root} -# RUN: %t.venv/bin/python -m pip install -r requirements.server.txt -# RUN: rm -rf %t.installation -# RUN: %t.venv/bin/lnt create %t.installation diff --git a/tests/utils/installation.shtest b/tests/utils/installation.shtest new file mode 100644 index 00000000..ecb9b963 --- /dev/null +++ b/tests/utils/installation.shtest @@ -0,0 +1,17 @@ +# Check that installation using the client requirements works properly. +# +# RUN: rm -rf %t.venv +# RUN: python -m venv %t.venv +# RUN: cd %{src_root} +# RUN: %t.venv/bin/python -m pip install -r requirements.client.txt +# RUN: rm -rf %t.installation +# RUN: %t.venv/bin/lnt create %t.installation + +# Check that installation using the server requirements works properly. +# +# RUN: rm -rf %t.venv +# RUN: python -m venv %t.venv +# RUN: cd %{src_root} +# RUN: %t.venv/bin/python -m pip install -r requirements.server.txt +# RUN: rm -rf %t.installation +# RUN: %t.venv/bin/lnt create %t.installation