Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mengdaming committed Oct 28, 2024
1 parent 94d97c9 commit 8dfff9b
Show file tree
Hide file tree
Showing 6 changed files with 142 additions and 232 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion tcr/TCR.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ After starting the script, you will see a menu that looks like the following:
[TCR] Loading configuration: (...)
[TCR] Loading toolchains configuration
[TCR] Loading languages configuration
[TCR] Starting TCR version 1.3.0...
[TCR] Starting TCR version 1.4.0...
[TCR] Base directory is (...)
[TCR] Found 1 source and 1 test file(s) for java language
[TCR] Work directory is (...)
Expand Down
2 changes: 1 addition & 1 deletion tcr/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tcr 1.3.0
tcr 1.4.0
5 changes: 5 additions & 0 deletions typescript/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@

**/node_modules/
**/test_results/
**/coverage/
.pnp.*
.yarn/
.yarnrc.yml
# To prevent conflicts between yarn and npm as long as we're using yarn
package-lock.json

# Snapshot files
**/__snapshots__/
*.snap
4 changes: 3 additions & 1 deletion typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"typescript": "^5.6.3"
},
"scripts": {
"test": "jest --watchAll"
"test": "jest --watchAll",
"coverage": "jest --coverage",
"update-snapshot": "jest --update-snapshot"
},
"jest-junit": {
"outputDirectory": "./test_results"
Expand Down
Loading

0 comments on commit 8dfff9b

Please sign in to comment.