From 8f0d5add449d5674f6638eb73b5df0614d9f053e Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 6 Nov 2022 19:57:02 +1100 Subject: [PATCH] Add backup dir for InvenTree test server (#215) * Add backup dir for InvenTree test server * Specify python version --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f2f695a3..cf9e5a06 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,6 +14,7 @@ env: INVENTREE_DB_NAME: ../inventree_unit_test_db.sqlite3 INVENTREE_MEDIA_ROOT: ../test_inventree_media INVENTREE_STATIC_ROOT: ../test_inventree_static + INVENTREE_BACKUP_DIR: ../test_inventree_backup INVENTREE_ADMIN_USER: testuser INVENTREE_ADMIN_PASSWORD: testpassword INVENTREE_ADMIN_EMAIL: test@test.com @@ -49,6 +50,10 @@ jobs: flutter pub get flutter analyze + - name: Install Python + uses: actions/setup-python@v2 + with: + python-version: 3.9 - name: Start InvenTree Server run: | sudo apt-get install python3-dev python3-pip python3-venv python3-wheel g++