tests/logging/py_ext_0@py_ext/pyfile.xml
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Sat, 09 Jun 2018 17:13:16 +0300
changeset 2181 52630996e51b
parent 1639 1953c268a194
permissions -rw-r--r--
Add command line argument to run linter only on changed files

./tests/tools/check_source.sh --only-changes

It's recommended to run check_source.sh automatically on each commit,
so the rules are always enforced.
Even better is to use docker for that, so the versions of pep8 and
pylint are the same as on pipeline server.

To do this couple of lines should be added into repository's hgrc file.

[----------- cut from .hg/hgrc------------------]

[hooks]
precommit.linter = ./tests/tools/check_source.sh --only-changes
# precommit.linter = docker run -it --volume=$PWD:/beremiz --workdir="/beremiz" --volume=$PWD/../CanFestival-3:/CanFestival-3 --memory=1g --entrypoint=/beremiz/tests/tools/check_source.sh skvorl/beremiz-requirements --only-changes

[-----------------------------------------------]
1639
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     1
<?xml version='1.0' encoding='utf-8'?>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     2
<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     3
  <variables/>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     4
  <globals>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     5
    <xhtml:p><![CDATA[import threading, time
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     6
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     7
MyT = None
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     8
Stop = False
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     9
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    10
def StartLog():
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    11
    global MyT
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    12
    MyT=threading.Thread(target = DoLog)
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    13
    MyT.start()
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    14
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    15
def DoLog():
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    16
    global Stop
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    17
    while not Stop:
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    18
        PLCObject.LogMessage("Python side Logging (PLC is %s)"%PLCObject.PLCStatus)
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    19
        time.sleep(0.3)
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    20
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    21
def StopLog():
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    22
    global MyT,Stop
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    23
    Stop=True
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    24
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    25
_runtime_init.append(StartLog)
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    26
_runtime_cleanup.append(StopLog)
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    27
]]></xhtml:p>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    28
  </globals>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    29
  <init>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    30
    <xhtml:p><![CDATA[]]></xhtml:p>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    31
  </init>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    32
  <cleanup>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    33
    <xhtml:p><![CDATA[]]></xhtml:p>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    34
  </cleanup>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    35
  <start>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    36
    <xhtml:p><![CDATA[]]></xhtml:p>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    37
  </start>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    38
  <stop>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    39
    <xhtml:p><![CDATA[]]></xhtml:p>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    40
  </stop>
1953c268a194 for tests svgui and logging move code from old py_ext.xml to the new pyfile.xml
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    41
</PyFile>