We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b687273 commit 5fb3ea9Copy full SHA for 5fb3ea9
1 file changed
.github/workflows/unit_tests.yml
@@ -0,0 +1,28 @@
1
+name: Unit Tests
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ develop ]
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v4
14
15
+ - name: Set up Python
16
+ uses: actions/setup-python@v5
17
+ with:
18
+ python-version: '3.11'
19
20
+ - name: Install dependencies
21
+ run: |
22
+ python -m pip install --upgrade pip
23
+ pip install -r requirements.txt
24
+ pip install pytest
25
26
+ - name: Run tests (excluding integration tests)
27
28
+ pytest --ignore=tests/test_integration.py
0 commit comments