Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
slapos
Commits
6fbbc045
Commit
6fbbc045
authored
Oct 11, 2021
by
Jérome Perrin
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proftpd: WIP run same test 1000 times
parent
33d4074d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
software/proftpd/test/test.py
software/proftpd/test/test.py
+9
-0
No files found.
software/proftpd/test/test.py
View file @
6fbbc045
...
...
@@ -364,3 +364,12 @@ class TestAuthenticationURL(TestSFTPOperations):
parameter_dict
=
self
.
computer_partition
.
getConnectionParameterDict
()
self
.
assertNotIn
(
'username'
,
parameter_dict
)
self
.
assertNotIn
(
'password'
,
parameter_dict
)
def
load_tests
(
loader
,
tests
,
pattern
):
import
unittest
suite
=
unittest
.
TestSuite
()
tests
=
loader
.
loadTestsFromTestCase
(
TestSFTPOperations
)
for
i
in
range
(
1000
):
suite
.
addTests
(
tests
)
return
suite
Jérome Perrin
@jerome
mentioned in merge request
nexedi/slapos!1067 (merged)
·
Oct 22, 2021
mentioned in merge request
nexedi/slapos!1067 (merged)
mentioned in merge request nexedi/slapos!1067
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment