Skip to content

Commit d757576

Browse files
authored
Add free automated testing with Travis CI
As a thank you for the nice work on TheAlgorithms/Python#1042... These test will run on each update to the code. You will need to log into https://travis-ci.org/mahbubcseju using your github credentials to turn on this free service. This is a simple config (but it still catches one issue on Python 3). To see a more complex config, see https://github.com/TheAlgorithms/Python/blob/master/.travis.yml
1 parent 742cdb3 commit d757576

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: python
2+
install: pip install flake8
3+
script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics

0 commit comments

Comments
 (0)