mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Move ino2cpp tests to the misc folder
This commit is contained in:
13
tests/misc/ino2cpp/__init__.py
Normal file
13
tests/misc/ino2cpp/__init__.py
Normal file
@ -0,0 +1,13 @@
|
||||
# Copyright (c) 2014-present PlatformIO <contact@platformio.org>
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
@ -17,16 +17,16 @@ from os.path import dirname, isdir, join, normpath
|
||||
|
||||
from platformio.commands.ci import cli as cmd_ci
|
||||
|
||||
INOTEST_DIR = normpath(join(dirname(__file__), "ino2cpp"))
|
||||
EXAMPLES_DIR = normpath(join(dirname(__file__), "examples"))
|
||||
|
||||
|
||||
def pytest_generate_tests(metafunc):
|
||||
if "piotest_dir" not in metafunc.fixturenames:
|
||||
return
|
||||
test_dirs = []
|
||||
for name in listdir(INOTEST_DIR):
|
||||
if isdir(join(INOTEST_DIR, name)):
|
||||
test_dirs.append(join(INOTEST_DIR, name))
|
||||
for name in listdir(EXAMPLES_DIR):
|
||||
if isdir(join(EXAMPLES_DIR, name)):
|
||||
test_dirs.append(join(EXAMPLES_DIR, name))
|
||||
test_dirs.sort()
|
||||
metafunc.parametrize("piotest_dir", test_dirs)
|
||||
|
||||
@ -37,10 +37,10 @@ def test_example(clirunner, validate_cliresult, piotest_dir):
|
||||
|
||||
|
||||
def test_warning_line(clirunner, validate_cliresult):
|
||||
result = clirunner.invoke(cmd_ci, [join(INOTEST_DIR, "basic"), "-b", "uno"])
|
||||
result = clirunner.invoke(cmd_ci, [join(EXAMPLES_DIR, "basic"), "-b", "uno"])
|
||||
validate_cliresult(result)
|
||||
assert 'basic.ino:16:14: warning: #warning "Line number is 16"' in result.output
|
||||
assert 'basic.ino:46:2: warning: #warning "Line number is 46"' in result.output
|
||||
result = clirunner.invoke(cmd_ci, [join(INOTEST_DIR, "strmultilines"), "-b", "uno"])
|
||||
result = clirunner.invoke(cmd_ci, [join(EXAMPLES_DIR, "strmultilines"), "-b", "uno"])
|
||||
validate_cliresult(result)
|
||||
assert 'main.ino:75:2: warning: #warning "Line 75"' in result.output
|
Reference in New Issue
Block a user