Skip to content

Commit 3d835dc

Browse files
committed
Attempt 2
1 parent 679d403 commit 3d835dc

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ test:
2525

2626
clean_all:
2727
docker-compose down
28-
sudo rm -rf tests/tmp/*
28+
# sudo rm -rf tests/tmp/*
29+
sudo rm -rf tests/tmp/app/*
30+
sudo rm -rf tests/tmp/docker_app/*
31+
sudo rm -rf tests/tmp/maria/*
32+
sudo rm -rf tests/tmp/cache/*
2933

3034
clean:
3135
sudo rm -rf tests/tmp/app/*

docker-compose.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ services:
3131
ports:
3232
- '13306:3306'
3333
volumes:
34-
- mysql:/var/lib/mysql:rw
34+
- ./tests/tmp/mysql:/var/lib/mysql:rw
35+
# - mysql:/var/lib/mysql
3536
environment:
3637
TZ: UTC
3738
MYSQL_ALLOW_EMPTY_PASSWORD: 1

tests/.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
/tmp
1+
/tmp/cache
2+
/tmp/docker_app
3+
/tmp/maria
4+
# !/tmp/mysql/.gitignore

tests/tmp/mysql/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# .gitignore
2+
*
3+
./../*
4+
!.gitignore

0 commit comments

Comments
 (0)