Rename tests to tests.py (#374)

This commit is contained in:
Arseny Kapoulkine 2022-02-18 10:04:38 -08:00 committed by GitHub
parent 5b78465059
commit a9bdce6cc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ jobs:
working-directory: prototyping working-directory: prototyping
run: | run: |
mkdir test-failures mkdir test-failures
python tests -l ../build/luau-ast --write-diff-failures --diff-failure-location test-failures/ python tests.py -l ../build/luau-ast --write-diff-failures --diff-failure-location test-failures/
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v2
if: failure() if: failure()
with: with:

View File

@ -1,4 +1,4 @@
#!/bin/python #!/usr/bin/python
import argparse import argparse
import difflib import difflib