Skip to content

Commit 89c2973

Browse files
committed
Travis CI: Enable more doctests
1 parent b79a197 commit 89c2973

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.travis.yml

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@ language: python
22
dist: xenial # required for Python >= 3.7
33
python: 3.7
44
cache: pip
5+
matrix:
6+
include:
7+
- before_script: true
8+
script: pytest --doctest-modules data_structures
9+
- before_script: true
10+
script: pytest --doctest-modules file_transfer_protocol
11+
- before_script: true
12+
script: pytest --doctest-modules graphs
13+
- before_script: true
14+
script: pytest --doctest-modules machine_learning
15+
- before_script: true
16+
script: pytest --doctest-modules maths
17+
- before_script: true
18+
script: pytest --doctest-modules project_euler
19+
520
before_install: pip install --upgrade pip setuptools
621
install: pip install -r requirements.txt
722
before_script:

0 commit comments

Comments
 (0)