mirror of
https://github.com/msmhq/msm.git
synced 2024-08-30 18:12:35 +00:00
24c25dfc78
Also removed the "apt-get update" command to see if we can do without it.
14 lines
303 B
YAML
14 lines
303 B
YAML
|
|
# Use python as its the simplest language which can run a test script
|
|
language: python
|
|
|
|
# Install shunit2
|
|
before_install:
|
|
- sudo apt-get install shunit2
|
|
|
|
# Create a minecraft user for testing
|
|
install:
|
|
- sudo adduser --system minecraft
|
|
|
|
# Run the test script
|
|
script: sudo /bin/bash ./test.sh |