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 d9b04f7 commit 5ef53b8Copy full SHA for 5ef53b8
.github/workflows/ci.yml
@@ -14,6 +14,23 @@ jobs:
14
activate-environment: synthia-test
15
environment-file: environment-test.yml
16
17
+ - name: Install Synthia (test env)
18
+ # 'shell' required to activate environment.
19
+ # See https://github.com/goanpeca/setup-miniconda#important.
20
+ shell: bash -l {0}
21
+ run: pip install .
22
+
23
+ - name: Run tests
24
25
+ run: pytest tests/
26
27
+ - name: Run tests with pyvinecopulib
28
29
+ run: |
30
+ set -ex
31
+ pip install pyvinecopulib
32
+ pytest tests/
33
34
# Install all dev dependencies to build notebooks etc.
35
- uses: goanpeca/setup-miniconda@v1
36
with:
0 commit comments