mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-30 11:55:26 +00:00
little things to setup & run tests (using docker)
This commit is contained in:
parent
3dc1707e01
commit
f4736bd1b9
3 changed files with 9 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
FROM elixir:alpine
|
||||
|
||||
RUN apk add --no-cache inotify-tools postgresql-client yarn file make gcc libc-dev argon2 imagemagick cmake build-base libwebp-tools bash ncurses git
|
||||
RUN apk add --no-cache inotify-tools postgresql-client yarn file make gcc libc-dev argon2 imagemagick cmake build-base libwebp-tools bash ncurses git python3
|
||||
|
||||
RUN mix local.hex --force && mix local.rebar --force
|
||||
|
||||
|
|
14
Makefile
14
Makefile
|
@ -1,5 +1,5 @@
|
|||
init:
|
||||
@bash docker/message.sh "start"
|
||||
@bash docker/message.sh "Start"
|
||||
make start
|
||||
|
||||
setup: stop
|
||||
|
@ -10,16 +10,16 @@ migrate:
|
|||
logs:
|
||||
docker-compose logs -f
|
||||
start: stop
|
||||
@bash docker/message.sh "starting Mobilizon with docker"
|
||||
@bash docker/message.sh "Starting Mobilizon with Docker"
|
||||
docker-compose up -d api
|
||||
@bash docker/message.sh "Docker server started."
|
||||
@bash docker/message.sh "Docker server started"
|
||||
stop:
|
||||
@bash docker/message.sh "stopping Mobilizon"
|
||||
@bash docker/message.sh "Stopping Mobilizon"
|
||||
docker-compose down
|
||||
@bash docker/message.sh "stopped"
|
||||
@bash docker/message.sh "Mobilizon is stopped"
|
||||
test: stop
|
||||
@bash docker/message.sh "Running tests"
|
||||
docker-compose -f docker-compose.yml -f docker-compose.test.yml run api mix test
|
||||
@bash docker/message.sh "Tests runned"
|
||||
docker-compose -f docker-compose.yml -f docker-compose.test.yml run api mix test $(only)
|
||||
@bash docker/message.sh "Done running tests"
|
||||
|
||||
target: init
|
||||
|
|
1
mix.exs
1
mix.exs
|
@ -247,6 +247,7 @@ defmodule Mobilizon.Mixfile do
|
|||
test: [
|
||||
"ecto.create",
|
||||
"ecto.migrate",
|
||||
"tz_world.update",
|
||||
&run_test/1
|
||||
],
|
||||
"phx.deps_migrate_serve": [
|
||||
|
|
Loading…
Reference in a new issue