Skip to content

Commit e46def6

Browse files
committed
Inclusão de arquivos de configuração
1 parent 93b8ead commit e46def6

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

.flake8

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[flake8]
2+
max-line-length = 120
3+
exclude = .venv

.pyup.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
requirements:
2+
- Pipfile
3+
- Pipfile.lock

.travis.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: python
2+
3+
python:
4+
- 3.7
5+
6+
env:
7+
global:
8+
- PIPENV_ENV_IN_PROJECT=1
9+
- PIPENV_IGNORE_VIRTUALENVS=1
10+
11+
install:
12+
- pip install pipenv
13+
- pipenv sync -d
14+
15+
script:
16+
- pipenv run flake 8 .

0 commit comments

Comments
 (0)