From 79c00fee2efeb083ea7d7eaffa0ae5b8a9e2ebe1 Mon Sep 17 00:00:00 2001 From: Andreas Stefl Date: Sat, 10 Aug 2024 10:29:12 +0200 Subject: [PATCH] impl test --- .github/workflows/wheels.yaml | 2 ++ test/test_foobar.py | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 test/test_foobar.py diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index ee340bf..ea18fa2 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -31,6 +31,8 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04, windows-2022, macos-13] + env: + MACOSX_DEPLOYMENT_TARGET: 10.14 steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 diff --git a/test/test_foobar.py b/test/test_foobar.py new file mode 100644 index 0000000..fe9dd48 --- /dev/null +++ b/test/test_foobar.py @@ -0,0 +1,5 @@ +import pyodr + + +def test_main(): + assert pyodr.__version__ == "dev"