Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnpooch/diplomacy-adjudicator
https://github.com/johnpooch/diplomacy-adjudicator
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/johnpooch/diplomacy-adjudicator
- Owner: johnpooch
- License: mit
- Created: 2020-03-27T17:01:02.000Z (almost 5 years ago)
- Default Branch: develop
- Last Pushed: 2020-04-10T19:35:50.000Z (almost 5 years ago)
- Last Synced: 2024-11-11T17:48:24.250Z (2 months ago)
- Language: Python
- Size: 184 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Diplomacy Adjudicator
## Getting Started
Clone the repo and create a `virtualenv` called `env`. Activate the `virtualenv`
and install dev requirements.```shell
virtualenv env
source env/bin/activate
pip install -r dev_requirements.txt
```## Running the tests
Make sure you are inside your virtual environment and have installed dev requirements.
From the project root run `nosetests` to run all of the tests.To run specific test files, add the path to the tests:
```shell script
nosetests adjudicator/tests/datc/test_a.py
```