21 lines
711 B
Markdown
21 lines
711 B
Markdown
# Project 02 - Python test generator
|
|
|
|
### About the Project
|
|
|
|
This project has the goal of writing a search based automated test generator for Python.
|
|
It is part of the Knowledge Search & Extraction - 2023 course from the Università della Svizzera italiana.
|
|
|
|
In this repository, you can find the following files:
|
|
- benchmark folder: which contains the benchmark of functions under test to be instrumented
|
|
|
|
Note: Feel free to modify this file according to the project's necessities.
|
|
|
|
## Environment setup
|
|
|
|
To install the required dependencies make sure `python3` points to a Python 3.10 or 3.11 installation and then run:
|
|
|
|
```shell
|
|
python3 -m venv env
|
|
source env/bin/activate
|
|
pip install -r requirements.txt
|
|
```
|