Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruben Restrepo committed Aug 16, 2023
1 parent 718117e commit fe49f2e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ license: mit
---

![Hugging Face Logo](https://huggingface.co/datasets/huggingface/brand-assets/resolve/main/hf-logo.svg)

# How Runme elevates your Machine Learning Ops

This demo showcases the utilization of [Runme](https://runme.dev/), highlighting a combination of a Runbook Runner and the Runme CLI to enhance Machine Learning Operations through Continuous Integration (CI).
Expand Down Expand Up @@ -58,7 +59,7 @@ const { reverseWords } = require('./js')

describe('Reverse words function', () => {
it('Should reverse as expected', () => {
assert.strictEqual(reverseWords(1,2,3), '3*****2*****1')
assert.strictEqual(reverseWords(1,2,3), '3*2*1')
})
})
```
Expand Down Expand Up @@ -88,4 +89,5 @@ gradio app.py
```

# Deploy to Hugging Face Space

Just use Git to push to main
2 changes: 1 addition & 1 deletion js/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const reverseWords = (subject, verb, object) => [subject, verb, object].reverse().join('*****')
const reverseWords = (subject, verb, object) => [subject, verb, object].reverse().join('*')

module.exports = {
reverseWords
Expand Down
2 changes: 1 addition & 1 deletion out/reverseWords.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
(subject, verb, object) => [subject, verb, object].reverse().join('*****')
(subject, verb, object) => [subject, verb, object].reverse().join('*')

0 comments on commit fe49f2e

Please sign in to comment.