File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ def null_cache():
134
134
return region
135
135
136
136
def validate_repo_url (self , repo : str ):
137
- """ Validates repo URL - if it's a valid git URL and if Arca can handle that type or repo URL
137
+ """ Validates repo URL - if it's a valid git URL and if Arca can handle that type of repo URL
138
138
139
139
:raise ValueError: If the URL is not valid
140
140
"""
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ Then a VM is launched and the image is pulled there from the registry.
150
150
This takes some time when first launching the VM, but if the VM is reused often, the upload/download time is shorted.
151
151
The built images are also not lost when the VM is destroyed.
152
152
153
- The backend inherits all the settings of ``DockerBackend `` (**keep_containers_running ** is by default ``True ``) has these extra settings:
153
+ The backend inherits all the settings of ``DockerBackend `` (**keep_containers_running ** is ``True `` by default) and has these extra settings:
154
154
155
155
* **box **: Vagrant box used in the VM. Either has to have docker version >= 1.8 or not have docker at all, in which case
156
156
it will be installed when spinning up the VM.
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ def long_description():
48
48
],
49
49
},
50
50
classifiers = [
51
- "Development Status :: 3 - Alpha " ,
51
+ "Development Status :: 4 - Beta " ,
52
52
"Intended Audience :: Developers" ,
53
53
"License :: OSI Approved :: MIT License" ,
54
54
"Programming Language :: Python" ,
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ def return_str_function():
14
14
15
15
TEST_UNICODE = "Nechť již hříšné saxofony ďáblů rozezvučí síň úděsnými tóny waltzu, tanga a\xa0 quickstepu.→"
16
16
17
- SECOND_RETURN_STR_FUNCTION = """
17
+ SECOND_RETURN_STR_FUNCTION = f """
18
18
def return_str_function():
19
- return "Nechť již hříšné saxofony ďáblů rozezvučí síň úděsnými tóny waltzu, tanga a \xa0 quickstepu.→ "
19
+ return "{ TEST_UNICODE } "
20
20
"""
21
21
22
22
ARG_STR_FUNCTION = """
You can’t perform that action at this time.
0 commit comments