Skip to content

Commit ec7b0ca

Browse files
authored
Do not install dot twice (#894)
1 parent 6c75b35 commit ec7b0ca

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/test-linux.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
OS: 'linux'
1919
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
2020
strategy:
21-
fail-fast: false
21+
fail-fast: false
2222
matrix:
2323
PYTHON_VERSION: ['3.8', '3.7', '3.6', '2.7']
2424
timeout-minutes: 10
@@ -31,15 +31,15 @@ jobs:
3131
- uses: actions/checkout@v2
3232
- uses: actions/setup-python@v2
3333
with:
34-
python-version: ${{ matrix.PYTHON_VERSION }}
34+
python-version: ${{ matrix.PYTHON_VERSION }}
3535
architecture: 'x64'
3636
- name: Create Jedi environment for testing
3737
if: matrix.PYTHON_VERSION != '2.7'
3838
run: |
3939
python3 -m venv /tmp/pyenv
4040
/tmp/pyenv/bin/python -m pip install loghub
4141
- run: python -m pip install --upgrade pip setuptools
42-
- run: pip install -e .[all] .[test]
42+
- run: pip install -e .[all,test]
4343
- run: py.test -v test/
4444
- name: Pylint checks
4545
if: matrix.PYTHON_VERSION == '2.7'

.github/workflows/test-mac.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ jobs:
3939
python3 -m venv /tmp/pyenv
4040
/tmp/pyenv/bin/python -m pip install loghub
4141
- run: python -m pip install --upgrade pip setuptools
42-
- run: pip install -e .[all] .[test]
42+
- run: pip install -e .[all,test]
4343
- run: py.test -v test/

.github/workflows/test-win.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
OS: 'win'
1919
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
2020
strategy:
21-
fail-fast: false
21+
fail-fast: false
2222
matrix:
2323
PYTHON_VERSION: ['3.8', '3.7', '3.6', '2.7']
2424
timeout-minutes: 10
@@ -31,8 +31,8 @@ jobs:
3131
- uses: actions/checkout@v2
3232
- uses: actions/setup-python@v2
3333
with:
34-
python-version: ${{ matrix.PYTHON_VERSION }}
34+
python-version: ${{ matrix.PYTHON_VERSION }}
3535
architecture: 'x64'
3636
- run: python -m pip install --upgrade pip setuptools
37-
- run: pip install -e .[all] .[test]
37+
- run: pip install -e .[all,test]
3838
- run: py.test -v test/

0 commit comments

Comments
 (0)