checks: python: code_rating: true duplicate_code: true javascript: true build: environment: apt_packages: - ffmpeg - python3-numpy - libxml2-dev - libxslt1-dev - python-dev nodes: analysis: # Used for installing any needed dependencies by your project like apt package or libraries. dependencies: before: # runs before inferred commands - wget https://repo.anaconda.com/miniconda/Miniconda3-4.7.12-Linux-x86_64.sh -O "/tmp/conda.sh" && dl=1 - cd /tmp - chmod +x conda.sh - ./conda.sh -b -p $HOME/miniconda3 - $HOME/miniconda3/bin/conda update conda -y - . $HOME/miniconda3/etc/profile.d/conda.sh - conda config --append channels conda-forge - conda create -n rsudp python=3.7.4 matplotlib=3.1.1 numpy=1.16.4 future scipy lxml sqlalchemy obspy -y - conda activate rsudp - pip install git+https://github.com/raspishake/rsudp project_setup: override: - pip install numpy==1.16.4 - python setup.py install tests: override: - py-scrutinizer-run - command: pylint-run use_website_config: true - rs-test --no-plot tests: true filter: excluded_paths: - '*/test/*' - '*.min.js' dependency_paths: - 'lib/*'