Metadata-Version: 2.1
Name: etna-quixote
Version: 2.1.0
Summary: Front-end to write automated tests for Etna projects
Home-page: https://github.com/etna-alternance/quixote
Author: Clément Doumergue
Author-email: clement.doumergue@etna.io
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: GitPython
Requires-Dist: etna-api
Requires-Dist: requests

# quixote

Front-end library to script automated jobs, with an emphasis on automatic school work correction.

## Documentation

The documentation is hosted at [etna-alternance.github.io/quixote](https://etna-alternance.github.io/quixote).

To build the documentation locally, run:

``` bash
pip install -r docs/requirements.txt
make -C docs html
```

## Tests

Tests can be run by installing PyTest and then calling it like below:

```
$ pip3 install pytest
$ pytest tests/*/*.py
```


