Skip to content

Commit fba3179

Browse files
ajeitando pasta
1 parent 4ece9e7 commit fba3179

File tree

12 files changed

+68
-171
lines changed

12 files changed

+68
-171
lines changed
File renamed without changes.

.travis.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
language: python
22
python:
3-
- 3.7
3+
-3.10
4+
-2.7
45
install:
5-
- pip install -q pipenv codecov
6-
- pipenv sync --dev
6+
- pip install -q -r requirements-dev.txt
77
script:
8-
- flake8
9-
- pytest libpythonpro --cov=libpythonpro
10-
after_success:
11-
- codecov
8+
-flake8

libpythonpro/.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

libpythonpro/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2'
1+
__version__=0.1

libpythonpro/requirements.txt

Lines changed: 0 additions & 10 deletions
This file was deleted.

libpythonpro/setup1.py

Lines changed: 0 additions & 138 deletions
This file was deleted.

libpythonpro/tests/README.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# libpythonpro
2+
3+
Módulo para exemplificar construção de projetos Python no curso PyTools
4+
5+
Nesse curso é ensinado como contribuir com projetos de código aberto
6+
7+
Link para o curso [Python Pro](https://plataforma.dev.pro.br/)
8+
9+
[![Build Status](https://app.travis-ci.com/GuilhermeePires/libpythonpro.svg?branch=master)](https://app.travis-ci.com/GuilhermeePires/libpythonpro)
10+
11+
Suportada versão 3 de python
12+
13+
Para instalar:
14+
15+
'''console
16+
python3 -m venv venv
17+
source venv/bin/activate
18+
pip install -r requirements-dev.txt
19+
'''
20+
21+
Para conferir qualidade do código:
22+
23+
'''
24+
console
25+
flake8
26+
'''
27+
28+
[![Build Status](https://travis-ci.org/pythonprobr/libpythonpro.svg?branch=master)](https://travis-ci.org/pythonprobr/libpythonpro)
29+
[![Updates](https://pyup.io/repos/github/pythonprobr/libpythonpro/shield.svg)](https://pyup.io/repos/github/pythonprobr/libpythonpro/)
30+
[![Python 3](https://pyup.io/repos/github/pythonprobr/libpythonpro/python-3-shield.svg)](https://pyup.io/repos/github/pythonprobr/libpythonpro/)
31+
[![codecov](https://codecov.io/gh/pythonprobr/libpythonpro/branch/master/graph/badge.svg)](https://codecov.io/gh/pythonprobr/libpythonpro)
32+
33+
Suportada versão 3 de Python
34+
35+
Para instalar:
36+
37+
```console
38+
pip install pipenv
39+
pipenv install --dev
40+
```
41+
42+
Para conferir qualidade de código:
43+
44+
```console
45+
pipenv run flake8
46+
```
47+
48+
Tópicos a serem abordados:
49+
1. Git
50+
2. Virtualenv
51+
3. Pip
52+
4. Mock
53+
5. Pipenv
54+

libpythonpro/tests/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = '0.2'

libpythonpro/tests/requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ flake8==4.0.1
22
mccabe==0.6.1
33
pycodestyle==2.8.0
44
pyflakes==2.4.0
5-
-r requirements.txtflake8
5+
-r requirements.txt
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ flake8==4.0.1
22
mccabe==0.6.1
33
pycodestyle==2.8.0
44
pyflakes==2.4.0
5-
-r requirements.txtflake8
5+
-r requirements.txt

0 commit comments

Comments
 (0)