from dealer import CardTable
t = CardTable()
t.build_deck()
t.shuffle()
t.deal_one_card()
build_deck()
shuffle(times=1) #User can set how many times they would like to shuffle
deal_one_card(cards=1) #User can decided how many cards they would like to deal
- Make sure you are in python venv
source casino/bin/activate
pytest -v