Giter Site home page Giter Site logo

gladson / desafio-banco-imobiliario Goto Github PK

View Code? Open in Web Editor NEW
1.0 3.0 0.0 109 KB

Home Page: https://desafio-banco-imobiliario.vercel.app

Makefile 1.11% Python 8.34% HTML 70.79% JavaScript 13.14% CSS 6.62%
python dynaconf pytest ipdb pytest-cov flake8 isort poetry makefile html

desafio-banco-imobiliario's Introduction

Desafio - Semelhante a um banco imobiliário

Caso precise de ajuda com os comandos

comando

❯ make help

resultado

Comandos - Banco Imobiliario
Ajuda

uso: make <sub comando>
Sub comandos:
    run                                         Rodar projeto
    pkg_install_poetry                          Instalar o gerenciador de dependencia - Poetry
    pkg_install_dev                             Instalar dependencias no ambiente de desenvolvimento
    pkg_install_prod                            Instalar dependencias - 'requirements.txt' no ambiente de produção
    pkg_req_create                              Exportar arquivo 'requirements.txt'
    pkg_req_del                                 Apagar arquivo 'requirements.txt'
    pkg_add_dev pkg=nome_dependencia            Adicionar dependencia para desenvolvimento
    pkg_add_prod pkg=nome_dependencia           Adicionar dependencia para produção
    run_test                                    Rodar teste de cobertura de codigo e pytest com modular fixture
    run_test_to_html                            Exportar teste de cobertura de codigo em uma pasta 'htmlcov'

Instalação

1º Instale o gerenciador de dependências

comando

❯ make pkg_install_poetry

resultado

curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
Retrieving Poetry metadata

# Welcome to Poetry!

This will download and install the latest version of Poetry,
a dependency and package manager for Python.

It will add the `poetry` command to Poetry's bin directory, located at:

$HOME/.poetry/bin

This path will then be added to your `PATH` environment variable by
modifying the profile file located at:

$HOME/.profile

You can uninstall at any time by executing this script with the --uninstall option,
and these changes will be reverted.

Installing version: 1.1.4
  - Downloading poetry-1.1.4-linux.tar.gz (57.03MB)

Poetry (1.1.4) is installed now. Great!

To get started you need Poetry's bin directory ($HOME/.poetry/bin) in your `PATH`
environment variable. Next time you log in this will be done
automatically.

To configure your current shell run `source $HOME/.poetry/env`

2º Instação do ambiente - Dev

comando

❯ make pkg_install_dev

resultado

poetry install
Installing dependencies from lock file

No dependencies to install or update

Installing the current project: banco-imobiliario (0.1.0)
poetry shell
Spawning shell within /home/gladson/.cache/pypoetry/virtualenvs/banco-imobiliario-YHc5w1h_-py3.8
. /home/gladson/.cache/pypoetry/virtualenvs/banco-imobiliario-YHc5w1h_-py3.8/bin/activate

desafio-banco-imobiliario on  main [!⇡] is 📦 v0.1.0 via 🐍 v3.8.5 
❯ . /home/gladson/.cache/pypoetry/virtualenvs/banco-imobiliario-YHc5w1h_-py3.8/bin/activate
desafio-banco-imobiliario on  main [!⇡] is 📦 v0.1.0 via 🐍 v3.8.5 (banco-imobiliario-YHc5w1h_-py3.8)

3º Rodar o projeto

comando

❯ make run

resultado

make -C src run_main
make[1]: Entrando no diretório '/desafio-banco-imobiliario/src'
python -m main
Quantas partidas terminam por tempo esgotado(timeout): 38
Quantos turnos em média demora uma partida: 150.1
Qual o comportamento que mais venceu:
        impulsive
        venceu: 129
Qual a porcentagem de vitórias por comportamento dos jogadores
  *   impulsive: 43%
  *   demanding: 28%
  *   cautious: 23%
  *   randomer: 5%
make[1]: Saindo do diretório '/desafio-banco-imobiliario/src'

4º Rodar os testes

comando

❯ make run_test

resultado

make -C src run_main_test
make[1]: Entrando no diretório '/desafio-banco-imobiliario/src'
flake8 banco_imobiliario/*.*
isort **/*.py
pytest --cov-append --cov=banco_imobiliario tests/
==================== test session starts ====================
platform linux -- Python 3.8.5, pytest-5.4.3, py-1.10.0, pluggy-0.13.1
rootdir: /desafio-banco-imobiliario, inifile: setup.cfg
plugins: cov-2.11.1
collected 11 items tests/test_board.py ....[ 45%]
tests/test_player.py .....[100%]

----------- coverage: platform linux, python 3.8.5-final-0 -----------
Name                                          Stmts   Miss  Cover
-----------------------------------------------------------------
banco_imobiliario/__init__.py                     1      0   100%
banco_imobiliario/board/__init__.py               0      0   100%
banco_imobiliario/board/base.py                  28      8    71%
banco_imobiliario/board/card_patrimony.py        11      2    82%
banco_imobiliario/board/factory.py               18      3    83%
banco_imobiliario/board/game_board.py            77     24    69%
banco_imobiliario/board/game_statistics.py       14     14     0%
banco_imobiliario/board/player_cautious.py        7      1    86%
banco_imobiliario/board/player_demanding.py       7      0   100%
banco_imobiliario/board/player_impulsive.py       5      0   100%
banco_imobiliario/board/player_random.py          8      0   100%
banco_imobiliario/config.py                       4      0   100%
-----------------------------------------------------------------
TOTAL                                           180     52    71%

==================== 11 passed in 0.16s ====================
make[1]: Saindo do diretório '/desafio-banco-imobiliario/src'

Extra

comando

❯ make run_test_to_html

resultado

make -C src run_main_test
make[1]: Entrando no diretório '/desafio-banco-imobiliario/src'
flake8 banco_imobiliario/*.*
isort **/*.py
pytest --cov-append --cov=banco_imobiliario tests/
==================== test session starts ====================
platform linux -- Python 3.8.5, pytest-5.4.3, py-1.10.0, pluggy-0.13.1
rootdir: /desafio-banco-imobiliario, inifile: setup.cfg
plugins: cov-2.11.1
collected 11 items tests/test_board.py .....[ 45%]
tests/test_player.py ......[100%]

----------- coverage: platform linux, python 3.8.5-final-0 -----------
Name                                          Stmts   Miss  Cover
-----------------------------------------------------------------
banco_imobiliario/__init__.py                     1      0   100%
banco_imobiliario/board/__init__.py               0      0   100%
banco_imobiliario/board/base.py                  28      8    71%
banco_imobiliario/board/card_patrimony.py        11      2    82%
banco_imobiliario/board/factory.py               18      3    83%
banco_imobiliario/board/game_board.py            77     24    69%
banco_imobiliario/board/game_statistics.py       14     14     0%
banco_imobiliario/board/player_cautious.py        7      1    86%
banco_imobiliario/board/player_demanding.py       7      1    86%
banco_imobiliario/board/player_impulsive.py       5      0   100%
banco_imobiliario/board/player_random.py          8      0   100%
banco_imobiliario/config.py                       4      0   100%
-----------------------------------------------------------------
TOTAL                                           180     53    71%

==================== 11 passed in 0.12s ====================
make[1]: Saindo do diretório '/desafio-banco-imobiliario'
make -C src run_main_test_to_html
make[1]: Entrando no diretório '/desafio-banco-imobiliario'
rm -rf htmlcov
pytest --cov-report html --cov=banco_imobiliario tests/
==================== test session starts ====================
platform linux -- Python 3.8.5, pytest-5.4.3, py-1.10.0, pluggy-0.13.1
rootdir: /desafio-banco-imobiliario-v1, inifile: setup.cfg
plugins: cov-2.11.1
collected 11 items
tests/test_board.py .....[ 45%]
tests/test_player.py ......[100%]

----------- coverage: platform linux, python 3.8.5-final-0 -----------
Coverage HTML written to dir htmlcov

==================== 11 passed in 0.19s ====================
make[1]: Saindo do diretório '/desafio-banco-imobiliario/src'

desafio-banco-imobiliario's People

Contributors

gladson avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.