Add boto3 backend

This commit is contained in:
c-bata
2023-01-14 00:22:38 +09:00
parent ccba45dfd8
commit bdc35ce391
4 changed files with 99 additions and 2 deletions
+3 -1
View File
@@ -22,7 +22,7 @@ jobs:
python -m pip install --progress-bar off --upgrade pip setuptools
pip install --progress-bar off "optuna>=3.0.0"
pip install --progress-bar off .
pip install --progress-bar off flake8 black isort mypy
pip install --progress-bar off flake8 black isort mypy mypy-boto3-s3
- run: flake8 . --show-source
- run: black --check --diff .
- run: isort --check --diff .
@@ -45,6 +45,7 @@ jobs:
# python_tests requires optuna>=3.0.0 since it imports FloatDistribution
run: |
python -m pip install --progress-bar off --upgrade pip setuptools
pip install boto3 moto[s3]
pip install --progress-bar off "optuna>=3.0.0"
pip install --progress-bar off .
- run: python -m unittest
@@ -60,6 +61,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --progress-bar off --upgrade pip setuptools
pip install boto3 moto[s3]
pip install --progress-bar off .
python -m pip install --progress-bar off --upgrade git+https://github.com/optuna/optuna.git
- run: python -m unittest