File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -53,5 +53,5 @@ docs/_build/
5353# PyBuilder
5454target /
5555
56- .lambda_package
56+ .lambda_uploader_temp
5757* .zip
Original file line number Diff line number Diff line change 2222from lambda_uploader import utils
2323
2424LOG = logging .getLogger (__name__ )
25- TEMP_WORKSPACE_NAME = ".lambda_package "
25+ TEMP_WORKSPACE_NAME = ".lamba_uploader_temp "
2626ZIPFILE_NAME = 'lambda_function.zip'
2727
2828
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def test_package_zip_location():
2525
2626def test_package_clean_workspace ():
2727 temp_workspace = path .join (TESTING_TEMP_DIR ,
28- '.lambda_package' )
28+ package . TEMP_WORKSPACE_NAME )
2929 os .mkdir (temp_workspace )
3030
3131 pkg = package .Package (TESTING_TEMP_DIR )
@@ -35,7 +35,7 @@ def test_package_clean_workspace():
3535
3636def test_prepare_workspace ():
3737 temp_workspace = path .join (TESTING_TEMP_DIR ,
38- '.lambda_package' )
38+ package . TEMP_WORKSPACE_NAME )
3939
4040 pkg = package .Package (TESTING_TEMP_DIR )
4141 pkg .prepare_workspace ()
@@ -50,7 +50,7 @@ def test_prepare_workspace():
5050def test_install_requirements ():
5151 reqs = ['pytest' ]
5252 temp_workspace = path .join (TESTING_TEMP_DIR ,
53- '.lambda_package' )
53+ package . TEMP_WORKSPACE_NAME )
5454
5555 pkg = package .Package (TESTING_TEMP_DIR )
5656 # pkg.prepare_workspace()
You can’t perform that action at this time.
0 commit comments