this repo has no description
1#!/usr/bin/env python3
2# Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com)
3import sys
4import unittest
5
6
7def cpython_only(test):
8 return unittest.skipUnless(
9 sys.implementation.name == "cpython", "requires CPython runtime"
10 )
11
12
13def pyro_only(test):
14 return unittest.skipUnless(
15 sys.implementation.name == "skybison", "requires PyRo runtime"
16 )(test)