File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 22! /** /
33! .gitignore
44! requirements.txt
5+ ! .travis.yml
56! ** /* .py
67! ** /* .md
78
89.env
910.vscode
1011
11- * .pyc
12+ * .pyc
Original file line number Diff line number Diff line change 1+ language : python
2+ python :
3+ - " 2.7"
4+ - " 3.5"
5+
6+ install :
7+ # Get Redis
8+ - git clone -depth=1 https://github.com/antirez/redis/redis.git && cd redis && make && cd ..
9+ # Get ReJSON
10+ - git clone -depth=1 https://github.com/RedisLabsModules/ReJSON && cd ReJSON && make && cd ..
11+ # Install requirements
12+ - pip install -r requirements.txt
13+ # Install rejson-py to test rejson-py
14+ - pip install -e .
15+
16+ before_script :
17+ - ./redis/src/redis-server --loadmodule rejson/src/rejson.so &
18+
19+ script :
20+ - cd test
21+ - python -munittest discover
22+
You can’t perform that action at this time.
0 commit comments