Skip to content

Commit

Permalink
execute dist tests on a per job basis
Browse files Browse the repository at this point in the history
As title
  • Loading branch information
esc committed Feb 6, 2025
1 parent 6c781de commit a3a455b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,25 @@ jobs:
PYTHON: '3.10'
CONDA_ENV: cienv
RUN_FLAKE8: yes
DIST_TEST: yes
py311:
PYTHON: '3.11'
CONDA_ENV: cienv
RUN_FLAKE8: yes
RUN_CLANG_FORMAT: yes
DIST_TEST: yes
py312:
PYTHON: '3.12'
CONDA_ENV: cienv
RUN_FLAKE8: yes
RUN_CLANG_FORMAT: yes
DIST_TEST: yes
py313:
PYTHON: '3.13'
CONDA_ENV: cienv
RUN_FLAKE8: yes
RUN_CLANG_FORMAT: yes
DIST_TEST: yes
# temporarily disabled
# pypy:
# PYTHON: pypy
Expand Down
4 changes: 3 additions & 1 deletion buildscripts/incremental/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ fi
if [ "$WHEEL" == "yes" ]; then
cd dist
python -m llvmlite.tests -v
else
elif [ "$DIST_TEST" == "yes" ]; then
LLVMLITE_DIST_TEST=1 python runtests.py -v
else
python runtests.py -v
fi

if [ "$RUN_COVERAGE" == "yes" ]; then coverage run runtests.py; fi

0 comments on commit a3a455b

Please sign in to comment.