From 1562794a5a5038d7e2a914e100a9c1a731f59150 Mon Sep 17 00:00:00 2001 From: Matthew Batchelder Date: Sat, 27 Apr 2024 04:45:01 -0400 Subject: [PATCH] Update tests --- .github/workflows/tests.yml | 4 ++-- tests/test_pipeline.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f306806..a7f19b4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,11 +4,11 @@ on: pull_request: paths: - 'tests/**.py' - - 'pypipeline/**.py' + - 'borkpipeline/**.py' push: paths: - 'tests/**.py' - - 'pypipeline/**.py' + - 'borkpipeline/**.py' jobs: build: diff --git a/tests/test_pipeline.py b/tests/test_pipeline.py index 65ce635..0436aa5 100644 --- a/tests/test_pipeline.py +++ b/tests/test_pipeline.py @@ -1,4 +1,4 @@ -from pypipeline.pipeline import Pipeline +from borkpipeline.pipeline import Pipeline import unittest class TestPipeline(unittest.TestCase):