diff --git a/Jenkinsfile b/Jenkinsfile index e5f0ea8..a83cf3f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,7 +24,6 @@ pipeline { stage('Run create-dataset script') { steps { withEnv (["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) { - sh 'rm -rf /.kaggle' sh 'chmod +x create-dataset.py' sh 'python3 ./create-dataset.py' } diff --git a/create-dataset.py b/create-dataset.py index 295e211..d472ab3 100644 --- a/create-dataset.py +++ b/create-dataset.py @@ -9,7 +9,8 @@ from sklearn.model_selection import train_test_split def download_kaggle_dataset(): - os.system("pwd") + os.system("ls ~/.kaggle") + os.system("ls /.kaggle") kaggle = KaggleApi() kaggle.authenticate() kaggle.dataset_download_files("mlg-ulb/creditcardfraud", path="./", unzip=True)