From 6f058c6a9c5394605897382abe10425659d138a9 Mon Sep 17 00:00:00 2001 From: Cristian Pufu Date: Mon, 27 Oct 2025 17:13:47 +0200 Subject: [PATCH] fix: add dummy test --- .github/workflows/cd.yml | 2 +- tests/test_placeholder.py | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 tests/test_placeholder.py diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2946e64..fdea7af 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -23,7 +23,7 @@ jobs: - lint - test - if: ${{ github.repository == 'UiPath/uipath-python' }} + if: ${{ github.repository == 'UiPath/uipath-runtime-python' }} permissions: contents: read actions: write diff --git a/tests/test_placeholder.py b/tests/test_placeholder.py new file mode 100644 index 0000000..a3f43c4 --- /dev/null +++ b/tests/test_placeholder.py @@ -0,0 +1,6 @@ +"""Placeholder test to prevent pytest from failing.""" + + +def test_placeholder(): + """Placeholder test that always passes.""" + assert True