/Queue-Simulator

Este projeto consiste em criar um simulador de um sistema com taxa de entrada e saída e inferir estatísticas sobre o tempo de atendimento e comprimento da fila.

Primary LanguagePython

Queue-Simulator

Este projeto consiste em criar um simulador de um sistema com taxa de entrada e saída e inferir estatísticas sobre o tempo de atendimento e comprimento da fila.

How to install

clone this project:

$ git clone https://github.com/matecomp/Queue-Simulator.git

create a virtualenv on new folder:

$ virtualenv -p python3 Queue-Simulator

init Queue-Simulator env:

$ cd Queue-Simulator
$ source bin/activate

If ok, will be print:

(Queue-Simulator) server@localhost:~$

install all requeriments on env:

$ pip install -r requirements.txt

execute pytest files:

$ pytest -q test/

If ok, will be print:

.....
5 passed in X.XX seconds