From 70d76c6d9714768904e32be9fb87a816e284545f Mon Sep 17 00:00:00 2001 From: Joe Jevnik Date: Thu, 9 Jul 2020 23:08:37 -0400 Subject: [PATCH] BLD: attempt to install from sdist in tests --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f76bc336..2dc0191a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -87,9 +87,10 @@ jobs: - name: Run the tests run: | make -j2 test - - name: Check that we can still install + - name: Build and install from an sdist run: | - pip install . + python setup.py sdist + pip install dist/libpy-*.tar.gz - name: Check that docs can be built # note we don't build this on macOS because the GHA python is built with # the wrong version of macOS, confusing clang.