Skip to content

Commit 5294a23

Browse files
authored
Merge pull request #62 from pytest-dev/fix-ci-envrionment
Fix CI environment
2 parents 3358704 + b662949 commit 5294a23

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,16 @@ jobs:
1414
os: [ubuntu-latest, windows-latest]
1515
python-version:
1616
- '2.7'
17-
- '3.6'
1817
- '3.7'
1918
- '3.8'
2019
- '3.9'
2120
- '3.10'
21+
include:
22+
# Python 3.6 is not supported in Ubuntu 22.04, so manually adding it to matrix with older version of Ubuntu
23+
- os: ubuntu-20.04
24+
python-version: '3.6'
25+
- os: windows-latest
26+
python-version: '3.6'
2227

2328
runs-on: ${{ matrix.os }}
2429

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repos:
1919
hooks:
2020
- id: check-manifest
2121

22-
- repo: https://gitlab.com/pycqa/flake8
22+
- repo: https://github.com/PyCQA/flake8
2323
rev: 3.8.3
2424
hooks:
2525
- id: flake8

0 commit comments

Comments
 (0)