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/
53
53
# PyBuilder
54
54
target /
55
55
56
- .lambda_package
56
+ .lambda_uploader_temp
57
57
* .zip
Original file line number Diff line number Diff line change 22
22
from lambda_uploader import utils
23
23
24
24
LOG = logging .getLogger (__name__ )
25
- TEMP_WORKSPACE_NAME = ".lambda_package "
25
+ TEMP_WORKSPACE_NAME = ".lamba_uploader_temp "
26
26
ZIPFILE_NAME = 'lambda_function.zip'
27
27
28
28
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def test_package_zip_location():
25
25
26
26
def test_package_clean_workspace ():
27
27
temp_workspace = path .join (TESTING_TEMP_DIR ,
28
- '.lambda_package' )
28
+ package . TEMP_WORKSPACE_NAME )
29
29
os .mkdir (temp_workspace )
30
30
31
31
pkg = package .Package (TESTING_TEMP_DIR )
@@ -35,7 +35,7 @@ def test_package_clean_workspace():
35
35
36
36
def test_prepare_workspace ():
37
37
temp_workspace = path .join (TESTING_TEMP_DIR ,
38
- '.lambda_package' )
38
+ package . TEMP_WORKSPACE_NAME )
39
39
40
40
pkg = package .Package (TESTING_TEMP_DIR )
41
41
pkg .prepare_workspace ()
@@ -50,7 +50,7 @@ def test_prepare_workspace():
50
50
def test_install_requirements ():
51
51
reqs = ['pytest' ]
52
52
temp_workspace = path .join (TESTING_TEMP_DIR ,
53
- '.lambda_package' )
53
+ package . TEMP_WORKSPACE_NAME )
54
54
55
55
pkg = package .Package (TESTING_TEMP_DIR )
56
56
# pkg.prepare_workspace()
You can’t perform that action at this time.
0 commit comments