Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 700 Bytes

File metadata and controls

37 lines (25 loc) · 700 Bytes

This repository has moved to https://github.com/letsago/80points

80 Points

A trick-based game where teams of players earn points to advance their levels.

Setup

# Creates a directory to hold dependencies
python3 -m venv venv

# Activate the virtual environment
source venv/bin/activate

# Install Python dependencies needed
pip install -r requirements.txt

Run the server

python3 server/server.py

Run unit tests

# Run a single test (run under server/)
python3 -m unittest model_test.py

# Runs all tests (run under server/)
python3 -m unittest *_test.py

# Run using `pytest`, can be run from anywhere (make sure `pytest` is installed)
pytest