-
Notifications
You must be signed in to change notification settings - Fork 5
53 lines (48 loc) · 1.76 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['python=3.8', 'python=3.9', 'python=3.10']
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install Dependencies
run: |
set -x
set -e
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
conda config --set always_yes yes --set changeps1 no
conda config --add channels conda-forge
conda update -q conda
conda info -a
conda create -n test-environment ${{ matrix.python }} pytest flaky sympy --file requirements.txt
conda init
- name: Run Tests
run: |
# Copied from .bashrc. We can't just source .bashrc because it exits
# when the shell isn't interactive.
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/usr/share/miniconda/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/usr/share/miniconda/etc/profile.d/conda.sh" ]; then
. "/usr/share/miniconda/etc/profile.d/conda.sh"
else
export PATH="/usr/share/miniconda/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
set -x
set -e
conda activate test-environment
python -We:invalid -We::SyntaxWarning -m compileall -f -q mypython
pyflakes mypython bin/mypython
python -m pytest -vvv --fulltrace