-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from mundialis/start_with_parallel_processing
Start with parallel processing
- Loading branch information
Showing
52 changed files
with
3,829 additions
and
453 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ __pycache__/* | |
.cache/* | ||
.*.swp | ||
*/.ipynb_checkpoints/* | ||
.coverage.* | ||
|
||
# Project files | ||
.ropeproject | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
python3 setup.py test --addopts "-m 'integrationtest'" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
python3 setup.py test --addopts "-m 'unittest'" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
version: "3" | ||
services: | ||
|
||
actinia-test: | ||
build: | ||
context: .. | ||
dockerfile: docker/actinia-parallel-plugin-test/Dockerfile | ||
volumes: | ||
- ..:/src/actinia-parallel-plugin/. | ||
ports: | ||
- "8088:8088" | ||
environment: | ||
- JOBTABLE_PW=actinia | ||
depends_on: | ||
- redis-test | ||
- postgis-test | ||
cap_add: | ||
- SYS_PTRACE | ||
networks: | ||
- actinia-test | ||
|
||
redis-test: | ||
image: redis:5.0.4-alpine | ||
volumes: | ||
- ./redis_data:/data | ||
environment: | ||
- REDIS_PASS_FILE=/data/config/.redis | ||
command: [ | ||
"sh", "-c", | ||
' | ||
docker-entrypoint.sh | ||
"/data/config/redis.conf" | ||
--requirepass "$$(cat $$REDIS_PASS_FILE)" | ||
' | ||
] | ||
ports: | ||
- "6379:6379" | ||
networks: | ||
- actinia-test | ||
|
||
postgis-test: | ||
image: postgis/postgis:14-3.2-alpine | ||
# network_mode: host | ||
environment: | ||
POSTGRES_USER: actinia | ||
POSTGRES_PASSWORD: actinia | ||
volumes: | ||
- ./postgresql_init_data:/docker-entrypoint-initdb.d | ||
# - ./postgresql_data:/var/lib/postgresql/data:Z | ||
networks: | ||
- actinia-test | ||
|
||
|
||
networks: | ||
actinia-test: | ||
ipam: | ||
config: | ||
- subnet: 172.18.0.0/26 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.