We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f28343 commit b002f2bCopy full SHA for b002f2b
2 files changed
src/e2e/tests/count.nf.test
@@ -12,4 +12,18 @@ nextflow_pipeline {
12
13
}
14
15
+ test("Should count an http file") {
16
+
17
+ when{
18
+ params{
19
+ url = 'https://github.com/supandatavizz/yellow-trip-parquet/raw/refs/heads/main/yellow_tripdata_2023-01.parquet'
20
+ }
21
22
+ then {
23
+ assert workflow.success
24
+ assert workflow.stdout[0] as int == 3066766
25
26
27
28
29
src/e2e/workflows/count.nf
@@ -1,5 +1,7 @@
1
include { countParquet } from 'plugin/nf-parquet'
2
3
-channel.fromPath("${baseDir}/data/presidents.parquet")
+url = params.url ?: "${baseDir}/data/presidents.parquet"
4
5
+channel.fromPath(url)
6
.countParquet( )
7
| view
0 commit comments