Makefile 487 Bytes
Newer Older
chenzk's avatar
v1.0.8  
chenzk committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Run nanotron's tests and examples's tests
test:
	pytest \
        --color=yes \
        --durations=0 \
        --ignore tests/fp8 \
        --verbose \
        tests/

	pip install -r examples/doremi/requirements.txt
	pytest \
        --color=yes \
        --durations=0 \
        --ignore tests/fp8 \
        --verbose \
        examples/doremi/tests/

	pip install -r examples/llama/requirements.txt
	pytest \
        --color=yes \
        --verbose \
        examples/llama/tests/