mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
CP-2205 - build and test
This commit is contained in:
parent
9ef907ab7b
commit
abbc5de42a
25
.github/workflows/python.yaml
vendored
Normal file
25
.github/workflows/python.yaml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
name: Python CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.11'
|
||||
cache: 'pip'
|
||||
|
||||
- name: Install core module
|
||||
run: pip install -e thousandeyes-sdk-core
|
||||
|
||||
- name: Install and test modules
|
||||
run: |
|
||||
pip install pytest
|
||||
for module in $(find . -maxdepth 1 -type d -name "thousandeyes-sdk-*" ! -name "thousandeyes-sdk-core" | cut -c 3-); do
|
||||
pip install -e $module
|
||||
pytest $module
|
||||
done
|
||||
Loading…
Reference in New Issue
Block a user