Skip to content

fix(algorithm): updated matAlgo07xSSf algorithm to return sparse matrix #3307

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/hyperexecute.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Hyperexecute
on:
workflow_dispatch:
inputs:
username:
required: true
description: LT Username
accessKey:
description: LT Access Key
required: true
sampleRepoLink:
description: Link to the HyperExecute sample repo
default: https://github.com/gauravchawhan/mathjs
required: true
jobs:
HyperExecute-Playwright:
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
os: [windows-latest]
steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Starting CLI testing
shell: bash
run: |
echo "STEP 1 ) Downloading sample suite"
git clone https://github.com/gauravchawhan/mathjs
echo "STEP 2) Download CLI and setting environment variables"
cd mathjs
curl https://downloads.lambdatest.com/hyperexecute/windows/hyperexecute.exe -o hyperexecute.exe
export LT_USERNAME=${{ github.event.inputs.username }}
export LT_ACCESS_KEY=${{ github.event.inputs.accessKey }}
./hyperexecute --user $LT_USERNAME --key $LT_ACCESS_KEY --config hyperexecute.yaml
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -253,5 +253,6 @@ Vistinum <[email protected]>
Vas Sudanagunta <[email protected]>
Brooks Smith <[email protected]>
Jmar L. Pineda <[email protected]>
gauravchawhan <[email protected]>

# Generated by tools/update-authors.js
32 changes: 32 additions & 0 deletions hyperexecute.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
version: 0.1
runson: win # defines the OS to test on

concurrency: 1 # number of machines to execute the testcases
autosplit: true

# pre steps sets up the environment for testing
pre:
- npm install
- npm install karma -g
- npm install -g karma-jasmine
- npm install karma-safari-launcher -g
- npm install karma-webdriver-launcher -g
- npm i karma-mocha -g
- npm i karma-webpack -g
- npm i mocha -g


# Smart cache
cacheKey: '{{ checksum "package-lock.json" }}'
cacheDirectories:
- node_modules

# testDiscovery is used to discover all the test cases in test/unit-tests folder
testDiscovery:
type: raw
mode: dynamic
command: grep -nri 'describe' test/unit-tests -ir --include=*.test.js | sed 's/:.*//'

# command to execute the test cases
testRunnerCommand: karma start test/browser-test-config/lt_karma.js --spec= $test
Loading