Skip to content
Snippets Groups Projects
config.yml 2.23 KiB
Newer Older
# Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
  build:
    docker:
      - image: circleci/python:3.6.9-stretch-node
          DATABASE_URL: postgresql://root@localhost/hypha?sslmode=disable
          DJANGO_SETTINGS_MODULE: hypha.settings.test
      - image: circleci/postgres:10.10
      - run:
          name: set owner on /usr/local
          command: sudo chown -R circleci:circleci /usr/local

            - v2-python-{{ .Branch }}-{{ checksum "requirements-dev.txt" }}
            - v2-python-{{ .Branch }}-
            - v2-python-
            - v2-npm-{{ .Branch }}-{{ checksum "package-lock.json" }}
            - v2-npm-{{ .Branch }}-
            - v2-npm-
          name: install python dependencies
          command: |
            python3 -m venv venv
            . venv/bin/activate
            pip install coverage codecov
            pip install -r requirements-dev.txt
          name: install node dependencies
            npm install --quiet
            npm install -g gulp-cli
          key: v2-python-{{ .Branch }}-{{ checksum "requirements-dev.txt" }}
            - /usr/local/lib/node_modules
            - /usr/local/bin
          key: v2-npm-{{ .Branch }}-{{ checksum "package-lock.json" }}

      - run:
          name: buils static assets
          command: gulp deploy

      - run:
          name: run tests
          command: |
            . venv/bin/activate
George Hickman's avatar
George Hickman committed
            make sort
            python manage.py collectstatic --noinput --verbosity=0
            python manage.py check
            python manage.py makemigrations --check --noinput --verbosity=1
            coverage run --source='hypha' manage.py test