Skip to content

Commit

Permalink
Merge pull request #231 from gisce/49603_feat_proceso_atr_A5_29
Browse files Browse the repository at this point in the history
ATR A5-29
  • Loading branch information
polsala committed Sep 18, 2023
2 parents 04aeba4 + 5da15b4 commit a3f2254
Show file tree
Hide file tree
Showing 4 changed files with 878 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
# You can use PyPy versions in python-version.
Expand All @@ -33,20 +33,20 @@ jobs:
if: matrix.python-version == '2.7'
run: |
sudo apt update
sudo apt install python2 python-pip
sudo apt install python2 python2-dev
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
sudo python2 get-pip.py
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 2
printf '1\n' | sudo update-alternatives --config python
cd /usr/bin
sudo ln -s /usr/bin/pip2 ./pip
- name: Upgrade pip
run: |
pip install --upgrade pip setuptools wheel
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
pip install .
# if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install unittest2; fi
pip install coveralls
- name: Run test
run: |
coverage run setup.py test
python -m unittest discover -v
Loading

0 comments on commit a3f2254

Please sign in to comment.