From 4fce33f25dfa1b3a459e663d46ef0e8f8e589567 Mon Sep 17 00:00:00 2001 From: konstntokas Date: Mon, 20 Jan 2025 14:10:40 +0100 Subject: [PATCH] adjust unittest workflow --- .github/workflows/unittest-workflow.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/unittest-workflow.yml b/.github/workflows/unittest-workflow.yml index 548eb24..c0addf1 100644 --- a/.github/workflows/unittest-workflow.yml +++ b/.github/workflows/unittest-workflow.yml @@ -25,16 +25,20 @@ jobs: with: environment-file: xcube-stac/environment.yml - - name: Start xcube server + # quick and dirty, will be removed after xcube 1.8 release + - name: Install xcube from source shell: bash -l {0} run: | + micromamba install -c conda-forge tabulate cd /home/runner/work/xcube-stac/xcube-stac/xcube ls - # ------------------------ - # quick and dirty, will be removed after xcube 1.8 release - micromamba install -c conda-forge tabulate pip install --no-deps . - # ------------------------ + + - name: Start xcube server + shell: bash -l {0} + run: | + cd /home/runner/work/xcube-stac/xcube-stac/xcube + ls xcube serve -c examples/serve/demo/config.yml & - name: Run unit tests