Skip to content

Commit

Permalink
Fixed GitHub actions
Browse files Browse the repository at this point in the history
- Updated Firefox dependency for UI tests
- Excluded unsupported versions of Python
  • Loading branch information
AlanCoding authored Mar 28, 2023
1 parent 79c434c commit 5f357c2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
include:
- python-version: '3.7'
django-version: '3.2'
exclude:
- python-version: '3.8'
django-version: 'main'
- python-version: '3.9'
django-version: 'main'

services:
postgres:
Expand Down Expand Up @@ -68,7 +73,7 @@ jobs:
- name: Install Selenium dependencies
run: |
sudo apt-get -qq update
sudo apt-get -y install firefox-geckodriver xvfb
sudo apt-get -y install firefox xvfb
- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
rev: v4.4.0
hooks:
- id: check-merge-conflict
- id: requirements-txt-fixer
Expand All @@ -14,7 +14,7 @@ repos:
- id: check-added-large-files
- id: debug-statements
- repo: https://github.com/pycqa/isort
rev: "5.10.1"
rev: "5.12.0"
hooks:
- id: isort
args: ["--profile", "black"]

0 comments on commit 5f357c2

Please sign in to comment.