-
Notifications
You must be signed in to change notification settings - Fork 26
108 lines (91 loc) · 2.72 KB
/
tests_unit.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: unit
on:
push:
# Runs for pull requests
pull_request:
branches:
- master
# Runs on publish
release:
types:
[published]
# Allow manual triggers
workflow_dispatch:
env:
XDG_CACHE_HOME: /home/runner/work/milabench/cache
XDG_DATA_HOME: /home/runner/work/milabench/data
XDG_CONFIG_HOME: /home/runner/work/milabench/config
XDG_STATE_HOME: /home/runner/work/milabench/state
jobs:
tests:
runs-on: ubuntu-latest
# Cancel previous jobs if a new version was pushed
concurrency:
group: "${{ github.ref }}-${{ matrix.arch }}"
cancel-in-progress: true
steps:
- uses: easimon/maximize-build-space@master
with:
remove-dotnet: 'true'
remove-codeql: 'true'
remove-haskell: 'true'
remove-android: 'true'
build-mount-path: /home/runner/work/milabench/
root-reserve-mb: 20000
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: dependencies
run: |
cd /home/runner/work/milabench/milabench
pip install virtualenv
virtualenv ./env
source ./env/bin/activate
#
pip install -U pip
pip install poetry
poetry export --dev -f requirements.txt --output requirements-dev.txt
#
# poetry doesnot work when installing those !?
#
pip install antlr4-python3-runtime==4.9.3
pip install -e .
pip install -e benchmate
pip install coverage pytest-regressions pytest-cov pytest
- name: Simple Template
run: |
source ./env/bin/activate
milabench new --name simplebench --template simple
cd benchmarks/simplebench
make tests
cd ..
rm -rf simplebench
- name: Voir Template
run: |
source ./env/bin/activate
milabench new --name voirbench --template voir
cd benchmarks/voirbench
make tests
cd ..
rm -rf voirbench
- name: space
run: |
df -h
- name: tests
env:
HUGGING_FACE_TOKEN: ${{ secrets.HUGGING_FACE_TOKEN}}
run: |
source ./env/bin/activate
coverage run --source=milabench -m pytest --ignore=tests/integration tests/ -vv -x
coverage report -m
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
flags: unittests
env_vars: PLATFORM,PYTHON
name: codecov-umbrella
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}