File tree 2 files changed +14
-8
lines changed
2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 56
56
ln -s repos/delphi/delphi-epidata/dev/local/pyproject.toml repos/
57
57
ln -s repos/delphi/delphi-epidata/dev/local/setup.cfg repos/
58
58
59
- - name : Build docker images and run tests
60
- run : make test
59
+ - name : Build docker images
60
+ run : |
61
+ make db
62
+ make web
63
+ make redis
64
+
65
+ - name : Run tests
66
+ run : |
67
+ make test
61
68
62
69
- name : Clean Up
63
70
run : |
Original file line number Diff line number Diff line change @@ -75,18 +75,18 @@ $(info M1 system detected, changing docker platform to linux/amd64.)
75
75
override M1 =--platform linux/amd64
76
76
endif
77
77
78
+ .PHONY =db
79
+ db :
80
+ @docker compose up delphi_database_epidata $(M1 ) --detach
81
+ @docker logs -f delphi_database_epidata > $(LOG_DB ) 2>&1 &
82
+
78
83
.PHONY =web
79
84
web :
80
85
@docker compose up delphi_web_epidata $(M1 ) \
81
86
--env " SQLALCHEMY_DATABASE_URI=$( sqlalchemy_uri) " \
82
87
--detach
83
88
@docker logs -f delphi_web_epidata > $(LOG_WEB ) 2>&1 &
84
89
85
- .PHONY =db
86
- db :
87
- @docker compose up delphi_database_epidata $(M1 ) --detach
88
- @docker logs -f delphi_database_epidata > $(LOG_DB ) 2>&1 &
89
-
90
90
.PHONY =redis
91
91
redis :
92
92
@docker compose up delphi_redis $(M1 ) --detach
@@ -100,7 +100,6 @@ test:
100
100
r-test :
101
101
@docker compose run delphi_web_python $(M1 ) Rscript repos/delphi/delphi-epidata/integrations/client/test_delphi_epidata.R | tee r-test_output_$(NOW ) .log
102
102
103
-
104
103
.PHONY =bash
105
104
bash :
106
105
@docker compose run delphi_web_python $(M1 ) bash
You can’t perform that action at this time.
0 commit comments