Completed
Push — master ( 3d5e8c...f94ada )
by P.R.
12:14
created

Checkout Config

filter:
  excluded_paths:
    - test/*

build:
  dependencies:
    before:
      - pip3 install -r requirements.txt

  nodes:
    analysis:
      tests:
        before:
          - mysql -u root -e "create database if not exists test;"
          - mysql -u root -e "create user 'test'@'localhost' identified by 'test';"
          - mysql -u root -e "grant all on test.*  to 'test'@'localhost';"
          - mysql -u root -e "set global binlog_format = 'row';"
          - mysql -u root -e "set global log_bin_trust_function_creators = 1;"
          - cat test/ddl/create_tables.sql | mysql -utest -ptest test
        override:
          - command: coverage run -m unittest discover -s test -p *Test.py
            coverage:
              file: '.coverage'
              config_file: '.coveragerc'
              format: 'py-cc'
          - py-scrutinizer-run

Repository Config

# language: python

# tests: true