Skip to content

Evitar parar la importación de totas las curvas en caso de que uno de los proveedores falle. #69

Evitar parar la importación de totas las curvas en caso de que uno de los proveedores falle.

Evitar parar la importación de totas las curvas en caso de que uno de los proveedores falle. #69

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python 2.7
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
# You can use PyPy versions in python-version.
# For example, pypy2 and pypy3
fail-fast: false
matrix:
python-version: [ "2.7" ]
steps:
- uses: actions/checkout@v3
- name: Install Python 2.7
run: |
sudo apt update
sudo apt install python2 python-pip
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: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
pip install coveralls
pip install -e .
pip install -r requirements-dev.txt
- name: Test with mamba
run: |
mamba --enable-coverage