mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-10 19:36:33 +03:00
12 lines
263 B
Bash
Executable File
12 lines
263 B
Bash
Executable File
#!/bin/bash
|
|
cd /tmp
|
|
rm -rf /tmp/orm_env*
|
|
virtualenv -p python3 /tmp/orm_env
|
|
cd /tmp/orm_env
|
|
source bin/activate
|
|
pip install infi.projector
|
|
git clone https://github.com/Infinidat/infi.clickhouse_orm.git
|
|
cd infi.clickhouse_orm
|
|
projector devenv build
|
|
bin/nosetests
|