File tree 5 files changed +20
-4
lines changed
5 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 179
179
/python3.10
180
180
/pypy
181
181
/pypy3
182
+ /pyston
183
+ /pyston3
182
184
/pyvenv-3. [456789 ]
183
185
/pyvenv-3.10
184
186
/qemu-kvm
Original file line number Diff line number Diff line change @@ -698,6 +698,8 @@ CLEANFILES = \
698
698
pylint-3 \
699
699
pypy \
700
700
pypy3 \
701
+ pyston \
702
+ pyston3 \
701
703
pytest-2 \
702
704
pytest-3 \
703
705
python2 \
@@ -950,9 +952,9 @@ symlinks: $(DATA)
950
952
$(ss ) pylint \
951
953
pylint-2 pylint-3
952
954
$(ss ) python \
953
- micropython pypy pypy3 python2 python2.7 python3 python3.3 \
954
- python3.4 python3.5 python3.6 python3.7 python3.8 python3.9 \
955
- python3.10
955
+ micropython pypy pypy3 pyston pyston3 python2 python2.7 \
956
+ python3 python3.3 python3.4 python3.5 python3.6 python3.7 \
957
+ python3.8 python3.9 python3. 10
956
958
$(ss ) pyvenv \
957
959
pyvenv-3.4 pyvenv-3.5 pyvenv-3.6 pyvenv-3.7 pyvenv-3.8 \
958
960
pyvenv-3.9 pyvenv-3.10
Original file line number Diff line number Diff line change @@ -71,6 +71,6 @@ _python()
71
71
fi
72
72
} &&
73
73
complete -F _python python python2 python2.7 python3 python3.{3..10} \
74
- pypy pypy3 micropython
74
+ pypy pypy3 pyston pyston3 micropython
75
75
76
76
# ex: filetype=sh
Original file line number Diff line number Diff line change @@ -490,6 +490,7 @@ EXTRA_DIST = \
490
490
test_pyflakes.py \
491
491
test_pylint.py \
492
492
test_pylint_3.py \
493
+ test_pyston.py \
493
494
test_pytest.py \
494
495
test_python.py \
495
496
test_python3.py \
Original file line number Diff line number Diff line change
1
+ import pytest
2
+
3
+
4
+ class TestPyston :
5
+ @pytest .mark .complete ("pyston " )
6
+ def test_basic (self , completion ):
7
+ assert completion
8
+
9
+ @pytest .mark .complete ("pyston -" )
10
+ def test_options (self , completion ):
11
+ assert completion
You can’t perform that action at this time.
0 commit comments