Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ecarreras/adventofcode22
- Owner: ecarreras
- Created: 2022-12-01T09:43:50.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-13T12:40:36.000Z (about 2 years ago)
- Last Synced: 2024-11-11T17:48:01.103Z (3 months ago)
- Topics: advent-of-code-2022, bdd, python3, tdd
- Language: Python
- Homepage:
- Size: 32.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```