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 4ba6061 commit a7289a1Copy full SHA for a7289a1
.github/workflows/retro_copat_test.yml
@@ -0,0 +1,29 @@
1
+name: Run Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v4
18
+ with:
19
+ python-version: '3.11'
20
21
+ - name: Install dependencies
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ pip install -e ".[test]"
25
+ pip install -e ".[past]"
26
27
+ - name: Run tests with coverage
28
29
+ pytest tests/unit/coal/ --cov=cosmotech.coal --cov-report=term
0 commit comments