Skip to content

Commit

Permalink
Update local-simulation
Browse files Browse the repository at this point in the history
  • Loading branch information
gregocgt committed Feb 26, 2019
1 parent 2eeab62 commit ea7b375
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions local-simu.sh
@@ -1,7 +1,14 @@
#!/bin/sh
#!/usr/bin/bash

if [ -d './dist' ]; then
rm -f ./dist/*.*
fi

find . -name '*.pyc' -exec rm -f {} \;
find . -name '*.egg-info' -exec rm -rf {} \;
find . -name '__pycache__' -exec rm -rf {} \;

# Before Install
rm /dist/*.*
pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
Expand Down

0 comments on commit ea7b375

Please sign in to comment.