From 1d1b6640bf6eb45c30efc3b8b02a0edfcf94596a Mon Sep 17 00:00:00 2001 From: Ace Date: Thu, 14 Apr 2022 05:45:20 +0200 Subject: [PATCH] testing --- .github/workflows/tests.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dc42dcd..5bffb06 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,11 +18,21 @@ jobs: run: | git clone --branch feature/venv --single-branch https://github.com/aceisace/Inkycal + - name: Creating virtual evvironment + run: | + cd Inkycal + python3 -m venv venv + source venv/bin/activate + python -m pip install --upgrade pip + + - name: Downloading settings.json file + run: | + wget https://raw.githubusercontent.com/aceisace/Inkycal/assets/tests/settings.json + - name: Install dependencies and run run: | - python -m pip install --upgrade pip - cd Inkycal - pip3 install -e ./ + pip install wheel + pip install -e ./ cd inkycal/modules && ls -al cd .. cd tests