Skip to content

Commit

Permalink
fix: Update Tests (#13)
Browse files Browse the repository at this point in the history
* update in-file test names

* de-macro-ize tests

* add test failure

* comment out failing tests

* fixed failing tests

* fixed the undeclaired global types

* removed unused variable

* fixing version issues

* uncommented failing tests

* formatter as always..

* fix: limit threads

---------

Co-authored-by: Khashayar Barooti <[email protected]>
Co-authored-by: Tom French <[email protected]>
  • Loading branch information
3 people authored Nov 30, 2024
1 parent 6b95505 commit e1f1c9c
Show file tree
Hide file tree
Showing 17 changed files with 574 additions and 163 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [nightly, 0.36.0]
toolchain: [nightly, 0.37.0]
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand All @@ -28,6 +28,8 @@ jobs:

- name: Run Noir tests
run: nargo test
env:
RAYON_NUM_THREADS: 1

format:
runs-on: ubuntu-latest
Expand All @@ -38,7 +40,7 @@ jobs:
- name: Install Nargo
uses: noir-lang/[email protected]
with:
toolchain: 0.36.0
toolchain: 0.37.0

- name: Run formatter
run: nargo fmt --check
Expand Down
4 changes: 2 additions & 2 deletions Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name = "noir_bigcurve"
type = "lib"
authors = [""]
compiler_version = ">=0.36.0"
compiler_version = ">=0.37.0"

[dependencies]
bignum = {tag = "v0.4.1", git = "https://github.com/noir-lang/noir-bignum"}
bignum = {tag = "v0.4.2", git = "https://github.com/noir-lang/noir-bignum"}
sort = {tag = "v0.2.0", git = "https://github.com/noir-lang/noir_sort"}
Loading

0 comments on commit e1f1c9c

Please sign in to comment.