#!/bin/bash

all: test

test:
	cd ./unisubject && make test
	cd ./multisubject && make test

clean:
	rm -rf ./__pycache__
	cd ./unisubject && make clean
	cd ./multisubject && make clean

