From f33c395f833567b665d14fe0c577799605e8091e Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Wed, 8 Nov 2017 04:11:23 -0500 Subject: Circle config --- .circleci/config.yml | 43 +++++++++++++++++++++++++++++++++++++++++++ README.rst | 3 +++ 2 files changed, 46 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..3097738 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,43 @@ +version: 2 +jobs: + build: + docker: + # specify the version you desire here + # use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers` + - image: circleci/python:3.6.1 + + # Specify service dependencies here if necessary + # CircleCI maintains a library of pre-built images + # documented at https://circleci.com/docs/2.0/circleci-images/ + # - image: circleci/postgres:9.4 + + working_directory: ~/repo + + steps: + - checkout + + # Download and cache dependencies + - restore_cache: + keys: + - v1-dependencies-{{ checksum "setup.py" }} + # fallback to using the latest cache if no exact match is found + - v1-dependencies- + + - run: + name: install dependencies + command: | + python3.6 -m venv .venv + . .venv/bin/activate + pip install -e . + + - save_cache: + paths: + - ./.venv + key: v1-dependencies-{{ checksum "setup.py" }} + + # run tests! + - run: + name: run tests + command: | + . .venv/bin/activate + python setup.py pytest diff --git a/README.rst b/README.rst index 1e29ec9..374af24 100644 --- a/README.rst +++ b/README.rst @@ -2,6 +2,9 @@ Actinide ######## +.. image:: https://circleci.com/gh/ojacobson/actinide.svg?style=svg + :target: https://circleci.com/gh/ojacobson/actinide + An embeddable lisp for Python applications. I had `an application`_ in which the ability to extend the application from -- cgit v1.2.3