Skip to content

Commit 1a70277

Browse files
Merge pull request #24 from GangadharUppin/testing1
testing
2 parents fb3464e + dc5c672 commit 1a70277

2 files changed

Lines changed: 35 additions & 0 deletions

File tree

.github/workflow/workflow.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Run Pytest
2+
3+
on:
4+
push:
5+
branches: ["main", "master"]
6+
pull_request:
7+
branches: ["main", "master"]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
python-version: ["3.9", "3.10", "3.11"]
16+
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v4
20+
21+
- name: Set up Python
22+
uses: actions/setup-python@v4
23+
with:
24+
python-version: ${{ matrix.python-version }}
25+
26+
- name: Install dependencies
27+
run: |
28+
python -m pip install --upgrade pip
29+
pip install -r requirements.txt
30+
pip install pytest
31+
32+
- name: Run pytest
33+
run: |
34+
pytest -vsm santy

Jenkins_2026/multibranch/Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,4 @@ pipeline {
6666
}
6767
}
6868
}
69+

0 commit comments

Comments
 (0)