Skip to content

Commit

Permalink
Disable Python 2.7 tests. (ros#28411)
Browse files Browse the repository at this point in the history
There is no need to run them anymore; Python 2.7 is out of
support for over a year now.  While we are in here, also
upgrade our runners to use Ubuntu 20.04

Signed-off-by: Chris Lalancette <[email protected]>
  • Loading branch information
clalancette authored Feb 26, 2021
1 parent 7202f3d commit 4eb2bfb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on: [push, pull_request]
jobs:
nosetests:
name: Nosetests
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [2.7, 3.8]
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -30,7 +30,7 @@ jobs:
run: nosetests -s
yamllint:
name: Yaml Linting
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.8]
Expand All @@ -45,4 +45,4 @@ jobs:
python -m pip install --upgrade pip setuptools wheel
pip install yamllint
- name: Run yamllint
run: yamllint */
run: yamllint */

0 comments on commit 4eb2bfb

Please sign in to comment.