Skip to content

Commit

Permalink
Use extras when running the test server
Browse files Browse the repository at this point in the history
Make sure that `travis_moto_server.sh` script
actually installs `all` and `server` extras.
  • Loading branch information
slafs committed May 31, 2020
1 parent 6645ddc commit 2c8d126
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions travis_moto_server.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env bash
set -e
pip install flask
pip install /moto/dist/moto*.gz
moto_server -H 0.0.0.0 -p 5000
pip install $(ls /moto/dist/moto*.gz)[server,all]
moto_server -H 0.0.0.0 -p 5000

0 comments on commit 2c8d126

Please sign in to comment.