-
Notifications
You must be signed in to change notification settings - Fork 8
38 lines (30 loc) · 1.01 KB
/
Copy pathtestsuite.yml
File metadata and controls
38 lines (30 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# This workflow will install MULE and run all the tests with pytest
name: Tests
on:
push:
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: [3.12]
platform:
- ubuntu-24.04
- macos-14 # macOS ARM (M1/M2/M3/M4)
- macos-15-intel # macOS x86_64
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Test suite
run: |
# Use setup.sh to handle architecture detection automatically
# Provide input to auto-select Yes for conda installation if needed
source setup.sh <<< "1"
echo
echo "************************************"
echo ---------------test-----------------
echo "************************************"
echo
PYTEST_ADDOPTS=--color=yes HYPOTHESIS_PROFILE=travis-ci \
conda run -n MULE-3.12-10-24 python -m pytest -v