mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Convert remaining doxygen to rst
This commit is contained in:
parent
fe779d9501
commit
c2c96faf5f
49 changed files with 2163 additions and 1657 deletions
|
@ -61,9 +61,10 @@ variant_filepaths = collectAllVariants()
|
|||
intent_filepaths = collectAllIntents()
|
||||
|
||||
|
||||
## Attempt to load all the quality profiles.
|
||||
@pytest.mark.parametrize("file_name", quality_filepaths)
|
||||
def test_validateQualityProfiles(file_name):
|
||||
"""Attempt to load all the quality profiles."""
|
||||
|
||||
try:
|
||||
with open(file_name, encoding = "utf-8") as data:
|
||||
serialized = data.read()
|
||||
|
@ -114,9 +115,10 @@ def test_validateIntentProfiles(file_name):
|
|||
# File can't be read, header sections missing, whatever the case, this shouldn't happen!
|
||||
assert False, "Got an exception while reading the file {file_name}: {err}".format(file_name = file_name, err = str(e))
|
||||
|
||||
## Attempt to load all the variant profiles.
|
||||
@pytest.mark.parametrize("file_name", variant_filepaths)
|
||||
def test_validateVariantProfiles(file_name):
|
||||
"""Attempt to load all the variant profiles."""
|
||||
|
||||
try:
|
||||
with open(file_name, encoding = "utf-8") as data:
|
||||
serialized = data.read()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue