mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
14 lines
234 B
Bash
Executable File
14 lines
234 B
Bash
Executable File
#!/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
|
|
|