Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ecarreras/adventofcode22

Advent of Code 2022 using Python and BDD
https://github.com/ecarreras/adventofcode22

advent-of-code-2022 bdd python3 tdd

Last synced: 17 days ago
JSON representation

Advent of Code 2022 using Python and BDD

Awesome Lists containing this project

README

        

# Advent of Code 2022 using Python and BDD

[![Test](https://github.com/ecarreras/adventofcode22/actions/workflows/python-app.yml/badge.svg)](https://github.com/ecarreras/adventofcode22/actions/workflows/python-app.yml)

## Install requirements

```shell
pip install -r requirements.txt
```

## Run all the tests

Export day* to Python path to allow import from dayX folder

```shell
export PYTHONPATH="."
```

```shell
for d in day*; do mamba $d; done
```