mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
14 lines
234 B
Bash
14 lines
234 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# This bash script sets up the test environment
|
||
|
|
||
|
# Test setup
|
||
|
pip install --user Pillow selenium sauceclient
|
||
|
export DISPLAY=:99.0
|
||
|
test/start_xvfb.sh
|
||
|
pushd /
|
||
|
python -m SimpleHTTPServer 8000 >/dev/null 2>&1 &
|
||
|
popd
|
||
|
sleep 5
|
||
|
|