From 58f801f0b0fae0f690808fcc75c814d54ddacefd Mon Sep 17 00:00:00 2001 From: Garth Johnson Date: Sun, 11 Feb 2024 15:04:02 -0800 Subject: [PATCH 1/2] commit test of changes in branch for classes (#12) --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index ab19b62..6a9ac2b 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,11 @@ Some possible tasks to add-to/replace the default options: - setup a reverse proxy for remote shell (outbond from container host to remote support system) - create a container project from defined template + +## Use with Portainer + +Use the `portainer-compose.yml` file and modify to your hearts content. + ## Notes - https://ohmyz.sh/#install From 0cb480ce6729a0577f46653bc9f2863f28985716 Mon Sep 17 00:00:00 2001 From: usefhamed Date: Tue, 13 Feb 2024 11:24:17 -0700 Subject: [PATCH 2/2] utilizing a removed test that tests proper testing functionality --- .vscode/settings.json | 7 +++++-- tests/baseline_test.py | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 534d4ca..f429309 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,6 @@ { - "editor.fontFamily": "'MesloLGS NF', 'Droid Sans Mono', 'monospace', monospace" -} \ No newline at end of file + "editor.fontFamily": "'MesloLGS NF', 'Droid Sans Mono', 'monospace', monospace", + "python.testing.pytestArgs": ["tests"], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true +} diff --git a/tests/baseline_test.py b/tests/baseline_test.py index ccd1521..b644a72 100644 --- a/tests/baseline_test.py +++ b/tests/baseline_test.py @@ -3,5 +3,5 @@ def test_always_passes(): assert True -# def test_always_fails(): -# assert False +def test_always_fails(): + assert False