@@ -12,20 +12,20 @@ jobs:
1212 - checkout
1313
1414 - run :
15- name : Write job name.
15+ name : ✍️ Write job name.
1616 command : echo $CIRCLE_JOB > circlejob.txt
1717
1818 - restore_cache :
1919 key : deps1-{{ .Branch }}-{{ checksum "circlejob.txt" }}-{{ checksum "tests/requirements.txt" }}-{{ checksum ".circleci/config.yml" }}
2020
2121 - run :
22- name : Create virtualenv
22+ name : 🏗️ Create virtualenv
2323 command : |
2424 sudo pip install virtualenv
2525 python -m venv venv || virtualenv venv
2626
2727 - run :
28- name : Install requirements
28+ name : 🏗️ Install requirements
2929 command : |
3030 . venv/bin/activate
3131 pip install -r tests/requirements.txt --quiet
3636 - venv
3737
3838 - run :
39- name : Generations tests
39+ name : 🧪 Generations tests
4040 command : |
4141 . venv/bin/activate
4242 pytest
@@ -58,20 +58,20 @@ jobs:
5858 - checkout
5959
6060 - run :
61- name : Write job name.
61+ name : ✍️ Write job name.
6262 command : echo $CIRCLE_JOB > circlejob.txt
6363
6464 - restore_cache :
6565 key : deps1-{{ .Branch }}-{{ checksum "circlejob.txt" }}-{{ checksum "tests/requirements.txt" }}-{{ checksum ".circleci/config.yml" }}
6666
6767 - run :
68- name : Create virtualenv
68+ name : 🏗️ Create virtualenv
6969 command : |
7070 sudo pip install virtualenv
7171 python -m venv venv || virtualenv venv
7272
7373 - run :
74- name : Install requirements
74+ name : 🏗️ Install requirements
7575 command : |
7676 . venv/bin/activate
7777 pip install -r tests/requirements.txt --quiet
8282 - venv
8383
8484 - run :
85- name : Generate Project & test
85+ name : 🧪 Generate Project & test
8686 command : |
8787 . venv/bin/activate
8888 mkdir test_install
0 commit comments