f8d29d083a
* properly ignore multiple virtual environments and vscode folders * use scss instead of css in app.component * remove yarn from client * remove deprication error * auditing packages * updating travis to work with the new client
26 lines
652 B
YAML
26 lines
652 B
YAML
language: python
|
|
dist: xenial
|
|
sudo: true
|
|
cache:
|
|
pip: true
|
|
yarn: true
|
|
python:
|
|
- "3.6"
|
|
- "3.7"
|
|
env:
|
|
- TRAVIS_NODE_VERSION="10.5"
|
|
before_install:
|
|
- nvm install $TRAVIS_NODE_VERSION
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
|
- export PATH="$HOME/.yarn/bin:$PATH"
|
|
install:
|
|
- pip install --upgrade setuptools pip
|
|
- pip install --upgrade --requirement requirements.txt
|
|
- pip freeze
|
|
- cd client && npm install && cd ..
|
|
script:
|
|
- flake8 openslides tests
|
|
- isort --check-only --diff --recursive openslides tests
|
|
- python -m mypy openslides/
|
|
- pytest --cov --cov-fail-under=70
|
|
- cd client && npm run-script lint && cd .. |