Skip to content

Commit

Permalink
Fix broken test build
Browse files Browse the repository at this point in the history
  • Loading branch information
marwoodandrew committed Aug 16, 2024
1 parent fa2a2b8 commit c95686f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests-py38.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ jobs:
python-version: 3.8

- name: docker-compose
run: docker-compose -f .actions-docker-compose.yml up -d
run: docker compose -f .actions-docker-compose.yml up -d

- run: |
sudo apt-get update
sudo apt-get install pkg-config libxml2-dev libxmlsec1-dev libxmlsec1-openssl
- name: cache pip
uses: actions/cache@v2
Expand All @@ -30,7 +34,7 @@ jobs:
- name: pip install
run: |
python -m pip install --upgrade pip wheel setuptools
python -m pip install --upgrade pip==24.0 wheel setuptools
pip install -r dev-requirements.txt
- name: flake8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
python-version: 3.6

- name: docker-compose
run: docker-compose -f .actions-docker-compose.yml up -d
run: docker compose -f .actions-docker-compose.yml up -d

- run: |
sudo apt-get update
Expand Down Expand Up @@ -76,4 +76,4 @@ jobs:
run: npm run test

- name: build
run: npm run build
run: npm run build

0 comments on commit c95686f

Please sign in to comment.