-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
42 lines (29 loc) · 881 Bytes
/
Makefile
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
coverage:
coverage run -m unittest discover
coverage report
test:
python3 -m unittest discover -p 'test_*.py'
test-rcache:
python3 -m unittest tests/test_rcache.py
test-lru:
python3 -m unittest tests/test_lru_cache.py
test-lfu:
python3 -m unittest tests/test_lfu_cache.py
test-random:
python3 -m unittest tests/test_random_cache.py
test-ttl:
python3 -m unittest tests/test_ttl_cache.py
test-volatile:
python3 -m unittest tests/test_volatile_cache.py
test-volatile-lru:
python3 -m unittest tests/test_volatile_lru.py
test-volatile-lfu:
python3 -m unittest tests/test_volatile_lfu.py
test-volatile-random:
python3 -m unittest tests/test_volatile_random_cache.py
test-volatile-ttl:
python3 -m unittest tests/test_volatile_ttl_cache.py
test-vttl:
python3 -m unittest tests/test_vttl_cache.py
test-bounded-ttl:
python3 -m unittest tests/test_bounded_cache.py