Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tiagocordeiro/nfimport
https://github.com/tiagocordeiro/nfimport
hacktoberfest
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tiagocordeiro/nfimport
- Owner: tiagocordeiro
- License: mit
- Created: 2018-10-17T16:03:31.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-15T13:45:50.000Z (about 2 months ago)
- Last Synced: 2024-11-15T14:34:18.693Z (about 2 months ago)
- Topics: hacktoberfest
- Language: CSS
- Homepage:
- Size: 11.1 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NFI
[![Build Status](https://travis-ci.org/tiagocordeiro/nfimport.svg?branch=master)](https://travis-ci.org/tiagocordeiro/nfimport)
[![Updates](https://pyup.io/repos/github/tiagocordeiro/nfimport/shield.svg)](https://pyup.io/repos/github/tiagocordeiro/nfimport/)
[![Python 3](https://pyup.io/repos/github/tiagocordeiro/nfimport/python-3-shield.svg)](https://pyup.io/repos/github/tiagocordeiro/nfimport/)
[![codecov](https://codecov.io/gh/tiagocordeiro/nfimport/branch/master/graph/badge.svg)](https://codecov.io/gh/tiagocordeiro/nfimport)## Como rodar o projeto:
* Clone esse repositório.
* Crie um virtualenv com Python 3.
* Ative o virtualenv.
* Instale as dependências.
* Rode as migrações.```
git clone https://github.com/tiagocordeiro/nfimport.git
cd nfimport
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python contrib/env_gen.py
python manage.py migrate
```## Como rodar os testes:
```
pycodestyle .
flake8 .
python manage.py test -v 2
```### Cobertura de testes:
```
coverage run --source='.' manage.py test -v 2
coverage report -m
```