Skip to content

Commit ba6ee64

Browse files
committed
Test
1 parent b3539b3 commit ba6ee64

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/test-linux.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ jobs:
3131
with:
3232
python-version: ${{ matrix.PYTHON_VERSION }}
3333
architecture: 'x64'
34+
- name: Create Jedi environment for testing
35+
if: matrix.PYTHON_VERSION != '2.7'
36+
run: |
37+
python3 -m venv /tmp/pyenv
38+
/tmp/pyenv/bin/python -m pip install loghub
3439
- run: pip install -e .[all] .[test]
3540
- run: py.test -v test/
3641
- run: pylint pyls test

.github/workflows/test-mac.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,10 @@ jobs:
3131
with:
3232
python-version: ${{ matrix.PYTHON_VERSION }}
3333
architecture: 'x64'
34+
- name: Create Jedi environment for testing
35+
if: matrix.PYTHON_VERSION != '2.7'
36+
run: |
37+
python3 -m venv /tmp/pyenv
38+
/tmp/pyenv/bin/python -m pip install loghub
3439
- run: pip install -e .[all] .[test]
3540
- run: py.test -v test/

0 commit comments

Comments
 (0)