#!/bin/bash

all: test

test:
	python session.py
	cd ./run && make test

clean:
	rm -rf ./__pycache__
	cd ./run && make clean

