summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/integration.yaml9
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml
index 4a07394..2765de9 100644
--- a/.github/workflows/integration.yaml
+++ b/.github/workflows/integration.yaml
@@ -51,7 +51,7 @@ jobs:
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
- build_package:
+ build_and_test_package:
name: Validate building and installing the package
runs-on: ubuntu-latest
steps:
@@ -62,5 +62,10 @@ jobs:
python-version: 3.9
- name: build and install
run: |
- pip install invoke
+ pip install -r dev_requirements.txt
invoke package
+ invoke devenv
+ pip install dist/*.tar.gz
+ mkdir STAGEAREA
+ cp -Rp tests STAGEAREA
+ pytest