Skip to content

Commit e62a164

Browse files
committed
Move tests -> extra_tests
1 parent 3bad3d3 commit e62a164

File tree

225 files changed

+22
-17
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

225 files changed

+22
-17
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
.vscode
99
wasm-pack.log
1010
.idea/
11-
tests/snippets/resources
11+
extra_tests/snippets/resources
1212

1313
flame-graph.html
1414
flame.txt

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ jobs:
8484
python -m pip install --upgrade pip
8585
python -m pip install pipenv
8686
- run: pipenv install
87-
working-directory: ./tests
87+
working-directory: ./extra_tests
8888
- name: run snippets
8989
run: pipenv run pytest -v
90-
working-directory: ./tests
90+
working-directory: ./extra_tests
9191
- name: run cpython tests
9292
run: target/release/rustpython -m test -v
9393
env:

.github/workflows/cron-ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040
python -m pip install --upgrade pip
4141
python -m pip install pipenv
4242
- run: pipenv install
43-
working-directory: ./tests
43+
working-directory: ./extra_tests
4444
- name: run snippets
4545
run: pipenv run pytest -v
46-
working-directory: ./tests
46+
working-directory: ./extra_tests
4747
env:
4848
RUSTPYTHON_DEBUG: 'true'
4949
- name: run cpython tests
@@ -68,7 +68,7 @@ jobs:
6868
command: build
6969
args: --release --verbose --all
7070
- name: collect tests data
71-
run: cargo run --release tests/jsontests.py
71+
run: cargo run --release extra_tests/jsontests.py
7272
env:
7373
RUSTPYTHONPATH: ${{ github.workspace }}/Lib
7474
- name: upload tests data to the website
@@ -82,7 +82,7 @@ jobs:
8282
8383
git clone git@github.com:RustPython/rustpython.github.io.git website
8484
cd website
85-
cp ../tests/cpython_tests_results.json ./_data/regrtests_results.json
85+
cp ../extra_tests/cpython_tests_results.json ./_data/regrtests_results.json
8686
git add ./_data/regrtests_results.json
8787
git -c user.name="Github Actions" -c user.email="actions@github.com" commit -m "Update regression test results" --author="$GITHUB_ACTOR"
8888
git push

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ __pycache__
99
.vscode
1010
wasm-pack.log
1111
.idea/
12-
tests/snippets/resources
12+
extra_tests/snippets/resources
1313

1414
flame-graph.html
1515
flame.txt

DEVELOPMENT.md

Lines changed: 4 additions & 3 deletions
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)