mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
34d63d5155
* Fix Travis CI long run for validate_solutions * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
28 lines
883 B
YAML
28 lines
883 B
YAML
os: linux
|
|
dist: focal
|
|
language: python
|
|
python: 3.8
|
|
cache: pip
|
|
before_install: pip install --upgrade pip setuptools six
|
|
jobs:
|
|
include:
|
|
- name: Build
|
|
install: pip install pytest-cov -r requirements.txt
|
|
script:
|
|
- pytest --doctest-modules --ignore=project_euler/ --durations=10 --cov-report=term-missing:skip-covered --cov=. .
|
|
- name: Project Euler
|
|
install:
|
|
- pip install pytest-cov
|
|
script:
|
|
- pytest --doctest-modules --durations=10 --cov-report=term-missing:skip-covered --cov=project_euler/ project_euler/
|
|
- name: Project Euler Solution
|
|
install:
|
|
- pip install pytest
|
|
script:
|
|
- pytest --tb=short --durations=10 project_euler/validate_solutions.py
|
|
after_success:
|
|
- scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md
|
|
notifications:
|
|
webhooks: https://www.travisbuddy.com/
|
|
on_success: never
|