Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/tests/netedit/scripts/showUppercaseTests.py
169678 views
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
4
# Copyright (C) 2009-2025 German Aerospace Center (DLR) and others.
5
# This program and the accompanying materials are made available under the
6
# terms of the Eclipse Public License 2.0 which is available at
7
# https://www.eclipse.org/legal/epl-2.0/
8
# This Source Code may also be made available under the following Secondary
9
# Licenses when the conditions for such availability set forth in the Eclipse
10
# Public License 2.0 are satisfied: GNU General Public License, version 2
11
# or later which is available at
12
# https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
13
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
14
15
# @file showUppercaseTests.py
16
# @author Pablo Alvarez Lopez
17
# @date 2022-03-21
18
19
import scandir
20
21
# file lists
22
fileList = []
23
24
# get all test.py
25
for paths, dirs, files in scandir.walk("D:/SUMO/tests/netedit"):
26
directory = paths.replace("D:/SUMO/tests/netedit", "")
27
directoryLower = directory.lower()
28
if (directory != directoryLower):
29
print(directory)
30
31