fxrank-lang-python 0.2.0

Python (libcst-based) frontend for FxRank's effect-cost profiler.
Documentation
1
2
3
4
5
6
7
8
9
10
11
def test_one():        # test_* function → skipped by default
    assert True

class TestThing:       # Test* class → its methods skipped
    def test_method(self):
        assert 1 == 1

import unittest
class MyCase(unittest.TestCase):
    def test_case(self):
        self.assertTrue(True)