summaryrefslogtreecommitdiff
path: root/testing/freeze
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-06-02 15:30:53 -0700
committerBruno Oliveira <bruno@esss.com.br>2019-06-03 12:08:01 -0300
commit5034399d7acc4bd14fdad3d056a9abc2fde13863 (patch)
treef7151c1415dd283c974a0e81578778a6e0789869 /testing/freeze
parent99057555e1859a6ad68d25d734b4d7e1063cc413 (diff)
downloadpytest-5034399d7acc4bd14fdad3d056a9abc2fde13863.tar.gz
pre-commit run fix-encoding-pragma --all-files
Diffstat (limited to 'testing/freeze')
-rw-r--r--testing/freeze/create_executable.py1
-rw-r--r--testing/freeze/runtests_script.py1
-rw-r--r--testing/freeze/tests/test_trivial.py1
-rw-r--r--testing/freeze/tox_run.py1
4 files changed, 0 insertions, 4 deletions
diff --git a/testing/freeze/create_executable.py b/testing/freeze/create_executable.py
index ab8013317..b53eb09f5 100644
--- a/testing/freeze/create_executable.py
+++ b/testing/freeze/create_executable.py
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
"""
Generates an executable with pytest runner embedded using PyInstaller.
"""
diff --git a/testing/freeze/runtests_script.py b/testing/freeze/runtests_script.py
index f7381f568..d03bca840 100644
--- a/testing/freeze/runtests_script.py
+++ b/testing/freeze/runtests_script.py
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
"""
This is the script that is actually frozen into an executable: simply executes
py.test main().
diff --git a/testing/freeze/tests/test_trivial.py b/testing/freeze/tests/test_trivial.py
index 449dbf9d3..08a55552a 100644
--- a/testing/freeze/tests/test_trivial.py
+++ b/testing/freeze/tests/test_trivial.py
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
def test_upper():
assert "foo".upper() == "FOO"
diff --git a/testing/freeze/tox_run.py b/testing/freeze/tox_run.py
index 29b727923..678a69c85 100644
--- a/testing/freeze/tox_run.py
+++ b/testing/freeze/tox_run.py
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
"""
Called by tox.ini: uses the generated executable to run the tests in ./tests/
directory.