README.md 364 Bytes
Newer Older
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
# Run Unit Tests

## Test Frontend Language
```
cd sglang/test/lang
export OPENAI_API_KEY=sk-*****

# Run a single file
python3 test_openai_backend.py

# Run a suite
python3 run_suite.py --suite minimal
```

## Test Backend Runtime
```
cd sglang/test/srt

# Run a single file
python3 test_eval_accuracy.py

# Run a suite
python3 run_suite.py --suite minimal
```