Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unnecessary checks for project_euler job
  • Loading branch information
dhruvmanila committed Sep 23, 2020
commit 818790b84925b8354fbd1bfcbcb946652c90b7a9
7 changes: 1 addition & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ os: linux
dist: focal
language: python
python: 3.8
branches:
branches: # This section will be removed in the last commit
only:
- config-travis
cache: pip
Expand All @@ -24,12 +24,7 @@ jobs:
- mypy --ignore-missing-imports .
- pytest --doctest-modules --ignore=project_euler/ --durations=10 --cov-report=term-missing:skip-covered --cov=. .
- name: project-euler
Comment thread
cclauss marked this conversation as resolved.
Outdated
before_script:
- black --check project_euler/ || true
- flake8 --ignore=E203,W503 --max-complexity=25 --max-line-length=88 --statistics --count project_euler/
- scripts/validate_filenames.py
script:
- mypy --ignore-missing-imports project_euler/
- pytest --doctest-modules --durations=10 --cov-report=term-missing:skip-covered --cov=project_euler/ project_euler/

after_success:
Expand Down