Skip to content

Commit 09d3cad

Browse files
committed
trying to fix github actions
1 parent 5a9070f commit 09d3cad

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030
python -m pip install --upgrade pip
3131
pip install numpy coverage
3232
pip install ./pyobs
33-
cd pyobs
34-
python setup.py build_ext
35-
python setup.py clean
33+
#cd pyobs
34+
#python setup.py build_ext
35+
#python setup.py clean
3636

3737
- name: Test
3838
run: |
39-
export PYTHONPATH=$PWD/pyobs/
39+
#export PYTHONPATH=$PWD/pyobs/
4040
cd pyobs
4141
./tests/run "coverage run -p"
4242
@@ -48,7 +48,7 @@ jobs:
4848
coverage xml # Export coverage report as XML file, for codecov.i
4949
5050
- name: Upload coverage to Codecov
51-
if: matrix.python-version == 3.6
51+
if: matrix.python-version == 3.8
5252
env:
5353
PYTHON_VERSION: python${{ matrix.python-version }}
5454
CODECOV_TOKEN: "6f56ccbf-ceab-4666-81a7-fc2431ba9bb8"

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ __pycache__/
66
*.ipynb*
77
*.so
88
!doc/tutorials/*ipynb
9+
*egg-info
910

1011
# ignores vim swap files
1112
*.swp

0 commit comments

Comments
 (0)