Skip to content

Commit 9f836b1

Browse files
Drop to only testing one Python version
1 parent 55c91da commit 9f836b1

1 file changed

Lines changed: 24 additions & 28 deletions

File tree

.github/workflows/ci.yml

Lines changed: 24 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -12,41 +12,37 @@ on:
1212
- master
1313

1414
jobs:
15-
doctest-and-lint:
16-
runs-on: ubuntu-latest-turned-off-right-now
17-
container: ubuntu:20.04
18-
steps:
19-
- uses: actions/checkout@v2
20-
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v2
22-
with:
23-
python-version: 3.6.15
15+
# doctest-and-lint:
16+
# runs-on: ubuntu-latest
17+
# container: ubuntu:20.04
18+
# steps:
19+
# - uses: actions/checkout@v2
20+
# - name: Set up Python ${{ matrix.python-version }}
21+
# uses: actions/setup-python@v2
22+
# with:
23+
# python-version: 3.6.15
2424

25-
- name: Install pinned dependencies
26-
run: |
27-
python -m pip install --upgrade pip
28-
pip install astropy==3.0.1 docutils==0.17.1 matplotlib==3.3.0 numpy==1.15.4 pandas==1.0.0 pyflakes scipy==1.2.2 sphinx==1.7.2 spktype21
25+
# - name: Install pinned dependencies
26+
# run: |
27+
# python -m pip install --upgrade pip
28+
# pip install astropy==3.0.1 docutils==0.17.1 matplotlib==3.3.0 numpy==1.15.4 pandas==1.0.0 pyflakes scipy==1.2.2 sphinx==1.7.2 spktype21
2929

30-
- name: Install Skyfield
31-
run: |
32-
python setup.py sdist
33-
pip install -e .
30+
# - name: Install Skyfield
31+
# run: |
32+
# python setup.py sdist
33+
# pip install -e .
3434

35-
- name: Doctest
36-
run: |
37-
./test-docs.sh
35+
# - name: Doctest
36+
# run: |
37+
# ./test-docs.sh
3838

39-
- name: Lint
40-
run: |
41-
pyflakes $(find skyfield/ -name '*.py')
39+
# - name: Lint
40+
# run: |
41+
# pyflakes $(find skyfield/ -name '*.py')
4242

4343
test:
4444
runs-on: ubuntu-latest
4545
container: ubuntu:20.04
46-
strategy:
47-
fail-fast: false
48-
matrix:
49-
python: [python2, python3]
5046

5147
steps:
5248
- uses: actions/checkout@v2
@@ -55,7 +51,7 @@ jobs:
5551
run: |
5652
apt update
5753
apt install -y -y -q -q python3-virtualenv virtualenv
58-
virtualenv -p ${{matrix.python}} V
54+
virtualenv V
5955
6056
- name: Build scripts
6157
run: |

0 commit comments

Comments
 (0)