2020-03-11 19:39:59 +00:00
# https://docs.drone.io/pipeline/docker/examples/languages/python/#python-example
kind : pipeline
type : docker
name : torch-GPU
steps :
- name : testing
2020-03-25 11:46:27 +00:00
image : pytorch/pytorch:1.4-cuda10.1-cudnn7-runtime
2020-03-14 17:01:57 +00:00
environment :
SLURM_LOCALID : 0
CODECOV_TOKEN :
from_secret : codecov_token
2020-03-11 19:39:59 +00:00
commands :
- python --version
- pip install pip -U
- pip --version
- nvidia-smi
2020-03-25 11:46:27 +00:00
- bash ./tests/install_AMP.sh
2020-03-11 19:39:59 +00:00
- pip install -r requirements.txt --user
2020-03-14 17:01:57 +00:00
- pip install coverage pytest pytest-cov pytest-flake8 codecov
2020-03-11 19:39:59 +00:00
- pip install -r ./tests/requirements.txt --user
- pip list
- python -c "import torch ; print(' & '.join([torch.cuda.get_device_name(i) for i in range(torch.cuda.device_count())]) if torch.cuda.is_available() else 'only CPU')"
2020-03-25 11:46:27 +00:00
- coverage run --source pytorch_lightning -m py.test pytorch_lightning tests -v --doctest-modules # --flake8
2020-03-19 13:14:29 +00:00
- coverage report
2020-03-14 17:01:57 +00:00
- codecov --token $CODECOV_TOKEN # --pr $DRONE_PULL_REQUEST --build $DRONE_BUILD_NUMBER --branch $DRONE_BRANCH --commit $DRONE_COMMIT --tag $DRONE_TAG