From 336e72e60f15ad9d4e60d4428be18edada426f63 Mon Sep 17 00:00:00 2001 From: Erik Kristensen Date: Tue, 5 Nov 2024 11:41:05 -0700 Subject: [PATCH] adding test cases --- sift/tests/python-with-apt-scripts.sls | 15 +++++++++++++++ sift/tests/python-with-apt.sls | 13 +++++++++++++ sift/tests/python.sls | 11 +++++++++++ sift/tests/python2-with-apt.sls | 11 +++++++++++ sift/tests/python3-with-apt.sls | 11 +++++++++++ 5 files changed, 61 insertions(+) create mode 100644 sift/tests/python-with-apt-scripts.sls create mode 100644 sift/tests/python-with-apt.sls create mode 100644 sift/tests/python.sls create mode 100644 sift/tests/python2-with-apt.sls create mode 100644 sift/tests/python3-with-apt.sls diff --git a/sift/tests/python-with-apt-scripts.sls b/sift/tests/python-with-apt-scripts.sls new file mode 100644 index 0000000..3d3a22b --- /dev/null +++ b/sift/tests/python-with-apt-scripts.sls @@ -0,0 +1,15 @@ +include: + - sift.packages + - sift.python-packages + - sift.python3-packages + - sift.scripts + +sift-tests-python-with-apt-scripts: + test.nop: + - name: sift-tests-python-with-apt-scripts + - require: + - sls: sift.packages + - sls: sift.python-packages + - sls: sift.python3-packages + - sls: sift.scripts + diff --git a/sift/tests/python-with-apt.sls b/sift/tests/python-with-apt.sls new file mode 100644 index 0000000..cf51ce2 --- /dev/null +++ b/sift/tests/python-with-apt.sls @@ -0,0 +1,13 @@ +include: + - sift.packages + - sift.python-packages + - sift.python3-packages + +sift-tests-python-with-apt: + test.nop: + - name: sift-tests-python-with-apt + - require: + - sls: sift.packages + - sls: sift.python-packages + - sls: sift.python3-packages + diff --git a/sift/tests/python.sls b/sift/tests/python.sls new file mode 100644 index 0000000..ec4ba4b --- /dev/null +++ b/sift/tests/python.sls @@ -0,0 +1,11 @@ +include: + - sift.python-packages + - sift.python3-packages + +sift-tests-python: + test.nop: + - name: sift-tests-python + - require: + - sls: sift.python-packages + - sls: sift.python3-packages + diff --git a/sift/tests/python2-with-apt.sls b/sift/tests/python2-with-apt.sls new file mode 100644 index 0000000..83c99c9 --- /dev/null +++ b/sift/tests/python2-with-apt.sls @@ -0,0 +1,11 @@ +include: + - sift.packages + - sift.python-packages + +sift-tests-python2-with-apt: + test.nop: + - name: sift-tests-python2-with-apt + - require: + - sls: sift.packages + - sls: sift.python-packages + diff --git a/sift/tests/python3-with-apt.sls b/sift/tests/python3-with-apt.sls new file mode 100644 index 0000000..26d6ef7 --- /dev/null +++ b/sift/tests/python3-with-apt.sls @@ -0,0 +1,11 @@ +include: + - sift.packages + - sift.python3-packages + +sift-tests-python3-with-apt: + test.nop: + - name: sift-tests-python3-with-apt + - require: + - sls: sift.packages + - sls: sift.python3-packages +