@@ -30,14 +30,14 @@ jobs:
3030 uses : actions/setup-python@v1
3131 with :
3232 python-version : ${{ matrix.python-version }}
33+ - name : Install POT
34+ run : |
35+ pip install -e .
3336 - name : Install dependencies
3437 run : |
3538 python -m pip install --upgrade pip
3639 pip install -r requirements.txt
3740 pip install pytest "pytest-cov<2.6" codecov
38- - name : Install POT
39- run : |
40- pip install -e .
4141 - name : Run tests
4242 run : |
4343 python -m pytest --durations=20 -v test/ ot/ --doctest-modules --ignore ot/gpu/ --cov=ot --color=yes
8888 - name : Install dependencies
8989 run : |
9090 python -m pip install --upgrade pip
91- pip install -r .github/requirements_strict.txt
9291 pip install pytest
9392 - name : Install POT
9493 run : |
@@ -112,14 +111,14 @@ jobs:
112111 uses : actions/setup-python@v1
113112 with :
114113 python-version : ${{ matrix.python-version }}
114+ - name : Install POT
115+ run : |
116+ pip install -e .
115117 - name : Install dependencies
116118 run : |
117119 python -m pip install --upgrade pip
118120 pip install -r requirements.txt
119121 pip install pytest "pytest-cov<2.6"
120- - name : Install POT
121- run : |
122- pip install -e .
123122 - name : Run tests
124123 run : |
125124 python -m pytest --durations=20 -v test/ ot/ --doctest-modules --ignore ot/gpu/ --cov=ot --color=yes
@@ -139,15 +138,15 @@ jobs:
139138 uses : actions/setup-python@v1
140139 with :
141140 python-version : ${{ matrix.python-version }}
141+ - name : Install POT
142+ run : |
143+ python -m pip install -e .
142144 - name : Install dependencies
143145 run : |
144146 python -m pip install --upgrade pip
145147 python -m pip install -r .github/requirements_test_windows.txt
146148 python -m pip install torch==1.8.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
147149 python -m pip install pytest "pytest-cov<2.6"
148- - name : Install POT
149- run : |
150- python -m pip install -e .
151150 - name : Run tests
152151 run : |
153152 python -m pytest --durations=20 -v test/ ot/ --doctest-modules --ignore ot/gpu/ --cov=ot --color=yes
0 commit comments