diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml index 3180522a..eab616bf 100644 --- a/.github/workflows/test-linux.yml +++ b/.github/workflows/test-linux.yml @@ -18,7 +18,7 @@ jobs: OS: 'linux' PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }} strategy: - fail-fast: false + fail-fast: false matrix: PYTHON_VERSION: ['3.8', '3.7', '3.6', '2.7'] timeout-minutes: 10 @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: ${{ matrix.PYTHON_VERSION }} + python-version: ${{ matrix.PYTHON_VERSION }} architecture: 'x64' - name: Create Jedi environment for testing if: matrix.PYTHON_VERSION != '2.7' @@ -39,7 +39,7 @@ jobs: python3 -m venv /tmp/pyenv /tmp/pyenv/bin/python -m pip install loghub - run: python -m pip install --upgrade pip setuptools - - run: pip install -e .[all] .[test] + - run: pip install -e .[all,test] - run: py.test -v test/ - name: Pylint checks if: matrix.PYTHON_VERSION == '2.7' diff --git a/.github/workflows/test-mac.yml b/.github/workflows/test-mac.yml index d3be41ad..22b95373 100644 --- a/.github/workflows/test-mac.yml +++ b/.github/workflows/test-mac.yml @@ -39,5 +39,5 @@ jobs: python3 -m venv /tmp/pyenv /tmp/pyenv/bin/python -m pip install loghub - run: python -m pip install --upgrade pip setuptools - - run: pip install -e .[all] .[test] + - run: pip install -e .[all,test] - run: py.test -v test/ diff --git a/.github/workflows/test-win.yml b/.github/workflows/test-win.yml index c393ff4d..2deae4fb 100644 --- a/.github/workflows/test-win.yml +++ b/.github/workflows/test-win.yml @@ -18,7 +18,7 @@ jobs: OS: 'win' PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }} strategy: - fail-fast: false + fail-fast: false matrix: PYTHON_VERSION: ['3.8', '3.7', '3.6', '2.7'] timeout-minutes: 10 @@ -31,8 +31,8 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: ${{ matrix.PYTHON_VERSION }} + python-version: ${{ matrix.PYTHON_VERSION }} architecture: 'x64' - run: python -m pip install --upgrade pip setuptools - - run: pip install -e .[all] .[test] + - run: pip install -e .[all,test] - run: py.test -v test/