Skip to content

Commit

Permalink
ci: do not stress test too much
Browse files Browse the repository at this point in the history
  • Loading branch information
boromir674 committed Oct 29, 2023
1 parent ee897c7 commit aeffa81
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ env:
RUN_LINT_CHECKS: "false"
BUILD_DOCKER: "false"
PUBLISH_ON_PYPI: "false"
DRAW_DEPENDENCIES: "true"
DRAW_DEPENDENCIES: "false"

jobs:
# we use the below to read the workflow env vars and be able to use in "- if:" Job conditionals
Expand Down Expand Up @@ -104,6 +104,7 @@ jobs:
echo "==== $PARSED_VERSION --> $WHEEL_VERSION"
echo "PKG_VERSION=$WHEEL_VERSION" >> $GITHUB_ENV # to be used in the next step
echo "SEMVER_PIP_FORMAT=$WHEEL_VERSION" >> $GITHUB_OUTPUT # to be used in other jobs
## TEST SUITE: By Default executes only unit-tests (ie no integration, or network-dependent tests)
- name: Run Unit Tests
run: tox -vv -s false
env:
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[tox]
envlist =
{py311, py310, py39, py38}-{dev, sdist, wheel}-{linux, macos, windows}
; {py311, py310, py39, py38}-{dev, sdist, wheel}-{linux, macos, windows}
{py311, py310, py39, py38}-{dev}-{linux, macos, windows}
coverage
isolated_build = true
skip_missing_interpreters = false
Expand Down

0 comments on commit aeffa81

Please sign in to comment.