Skip to content

Commit

Permalink
Merge 8dba1ff into 5dbe27a
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilo59 committed Sep 23, 2022
2 parents 5dbe27a + 8dba1ff commit e22ad5f
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions azure-pipelines-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@ stages:
- job: compatibility_matrix
condition: eq(stageDependencies.scope_check.changes.outputs['CheckChanges.GEChanged'], true)
variables:
GE_pytest_opts: '--no-sqlalchemy'
- group: 'common_secrets'
- name: GE_pytest_opts
value: '--no-sqlalchemy'
strategy:
matrix:
Python37-Pandas023:
Expand Down Expand Up @@ -243,13 +245,23 @@ stages:
- script: |
# Install dependencies
pip install pytest-cov pytest-icdiff pytest-mock pytest-azurepipelines invoke
pip install -r requirements-dev-test.txt
# Run unit-tests
invoke tests --ci --cloud --timeout=3.0
displayName: 'Unit Tests'
- script: |
pip install coveralls
export CIRCLE_BRANCH=$BUILD_SOURCEBRANCH
coveralls
displayName: 'coveralls for Unit Tests'
env:
CIRCLECI: 1
CIRCLE_BUILD_NUM: $(Build.BuildNumber)
COVERALLS_REPO_TOKEN: $(coveralls)
- script: |
# Run pytest
pytest tests --ignore 'tests/cli' --ignore 'contrib/cli/tests' --ignore 'tests/integration/usage_statistics' \
Expand Down

0 comments on commit e22ad5f

Please sign in to comment.