microblog.pub/.travis.yml

31 lines
1.2 KiB
YAML
Raw Normal View History

2018-05-18 13:41:41 -05:00
language: python
2018-05-20 15:05:50 -05:00
sudo: required
2018-05-18 13:41:41 -05:00
python:
- "3.6"
2018-05-20 15:05:50 -05:00
services:
- docker
2018-05-18 13:41:41 -05:00
install:
2018-07-04 18:20:13 -05:00
- sudo apt-get install -y curl python-tk
2018-05-20 15:40:14 -05:00
- sudo pip install -U pip
2018-05-20 15:05:50 -05:00
- sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
- sudo chmod +x /usr/local/bin/docker-compose
- docker-compose --version
2018-05-20 15:34:56 -05:00
- pip install -r dev-requirements.txt
2018-05-18 13:41:41 -05:00
script:
2018-05-20 15:11:32 -05:00
- mypy --ignore-missing-imports .
- flake8 activitypub.py
- cp -r tests/fixtures/me.yml config/me.yml
2018-06-01 13:29:44 -05:00
- docker build . -t microblogpub:latest
2018-05-20 15:11:32 -05:00
- docker-compose up -d
- docker-compose ps
- WEB_PORT=5006 CONFIG_DIR=./tests/fixtures/instance1/config docker-compose -p instance1 -f docker-compose-tests.yml up -d
- docker-compose -p instance1 -f docker-compose-tests.yml ps
- WEB_PORT=5007 CONFIG_DIR=./tests/fixtures/instance2/config docker-compose -p instance2 -f docker-compose-tests.yml up -d
- docker-compose -p instance2 -f docker-compose-tests.yml ps
2018-05-30 17:08:00 -05:00
- curl http://localhost:5006
- curl http://localhost:5007
# Integration tests first
- python -m pytest -v --ignore data -k integration
# Federation tests (with two local instances)
- python -m pytest -v -s --ignore data -k federation