This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
fbchat/tests/test_examples.py
2020-01-22 23:56:39 +01:00

11 lines
270 B
Python

import pytest
import py_compile
import glob
from os import path
def test_examples_compiles():
# Compiles the examples, to check for syntax errors
for name in glob.glob(path.join(path.dirname(__file__), "../examples", "*.py")):
py_compile.compile(name)