Skip to content

Commit 5f357c2

Browse files
authored
Fixed GitHub actions
- Updated Firefox dependency for UI tests - Excluded unsupported versions of Python
1 parent 79c434c commit 5f357c2

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ jobs:
1414
include:
1515
- python-version: '3.7'
1616
django-version: '3.2'
17+
exclude:
18+
- python-version: '3.8'
19+
django-version: 'main'
20+
- python-version: '3.9'
21+
django-version: 'main'
1722

1823
services:
1924
postgres:
@@ -68,7 +73,7 @@ jobs:
6873
- name: Install Selenium dependencies
6974
run: |
7075
sudo apt-get -qq update
71-
sudo apt-get -y install firefox-geckodriver xvfb
76+
sudo apt-get -y install firefox xvfb
7277
7378
- name: Install dependencies
7479
run: |

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.2.0
5+
rev: v4.4.0
66
hooks:
77
- id: check-merge-conflict
88
- id: requirements-txt-fixer
@@ -14,7 +14,7 @@ repos:
1414
- id: check-added-large-files
1515
- id: debug-statements
1616
- repo: https://github.com/pycqa/isort
17-
rev: "5.10.1"
17+
rev: "5.12.0"
1818
hooks:
1919
- id: isort
2020
args: ["--profile", "black"]

0 commit comments

Comments
 (0)