Skip to content

Commit

Permalink
Force py2.7 into env
Browse files Browse the repository at this point in the history
  • Loading branch information
richardkiss committed Dec 1, 2024
1 parent 061ddcb commit dbe3bf7
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
43 changes: 43 additions & 0 deletions .github/workflows/test-py27.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Tests and coverage

on:
push:
branches:
- '**'
tags:
- '**'

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
max-parallel: 4
matrix:
python-version: [2.7]

steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up Python 2.7
run: |
sudo apt-get update
sudo apt-get install -y software-properties-common
sudo add-apt-repository universe
sudo apt-get install -y python2
python2 --version
- name: Install pip for Python 2.7
run: |
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
sudo python2 get-pip.py
python2 -m pip --version
- name: Test core code with pytest
run: |
pip install coverage pytest
coverage run -m pytest tests
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
python-version: [2.7, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]

steps:
- name: Checkout Code
Expand Down

0 comments on commit dbe3bf7

Please sign in to comment.