diff --git a/.azure-pipelines/steps/run-tests-windows.yml b/.azure-pipelines/steps/run-tests-windows.yml index b50917c0..275beeeb 100644 --- a/.azure-pipelines/steps/run-tests-windows.yml +++ b/.azure-pipelines/steps/run-tests-windows.yml @@ -43,15 +43,14 @@ steps: parameters: python_version: ${{ parameters.python_version }} - - powershell: | + - shell: | git submodule sync git submodule update --init --recursive - Write-Host "Running Command: pipenv run pytest -n 4 --junitxml=junit/test-results.xml tests/" - $env:TEMP = "R:\" pipenv run pytest -ra -n 4 --junit-xml=junit/test-results.xml tests/ failOnStderr: false displayName: Run integration tests env: + TEMP: 'R:\' PYTHONWARNINGS: 'ignore:DEPRECATION' PIPENV_NOSPIN: 1 GIT_SSH_COMMAND: ssh -o StrictHostKeyChecking=accept-new -o CheckHostIP=no diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2b8ca39a..8070b0fc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,6 +10,7 @@ jobs: matrix: python-version: [2.7, 3.6, 3.7, 3.8] os: [macOS-latest, ubuntu-latest, windows-latest] + fail-fast: false steps: - uses: actions/checkout@v1 @@ -50,4 +51,4 @@ jobs: PYTHONIOENCODING: 'utf-8' GIT_SSH_COMMAND: ssh -o StrictHostKeyChecking=accept-new -o CheckHostIP=no run: | - pipenv run pytest -ra -n 4 --timeout 300 tests + pipenv run pytest -ra -n 4 tests