Skip to content

Commit

Permalink
Merge pull request #25 from Ayushk4/project_toml_patch
Browse files Browse the repository at this point in the history
Add Project toml
  • Loading branch information
Ayushk4 authored Aug 1, 2019
2 parents 5d12a44 + 2cd765f commit 114fa32
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
*.jl.mem
*.swp
**.ipynb_checkpoints

/docs/build
/docs/site
24 changes: 24 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name = "CorpusLoaders"
uuid = "214a0ac2-f95b-54f7-a80b-442ed9c2c9e8"
license = "MIT"
desc = "A variety of loaders for various NLP corpora."
version = "0.3.0"

[deps]
LightXML = "9c8b4983-aa76-5018-a973-4c85ecc9e179"
DataDeps = "124859b0-ceae-595e-8997-d05f6a7a8dfe"
Glob = "c27321d9-0574-5035-807b-f59d2c89b15c"
InternedStrings = "7d512f48-7fb1-5a58-b986-67e6dc259f01"
StringEncodings = "69024149-9ee7-55f6-a4c4-859efe599b68"
WordTokenizers = "796a5d58-b03d-544a-977e-18100b691f6e"
MultiResolutionIterators = "396aa475-d5af-5b65-8c11-5c82e21b2380"
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"

[compat]
julia = "1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
6 changes: 4 additions & 2 deletions test/test_wikicorpus.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ using Base.Iterators
using MultiResolutionIterators
using InternedStrings

if ENV["CI"]=="true" && ENV["TRAVIS"]=="true"
@warn "WikiCorpus tests disabled on TravisCI"
if ENV["CI"] == "true" && ENV["TRAVIS"] == "true"
@warn "WikiCorpus tests disabled on TravisCI."
elseif ENV["CI"] == "True" && ENV["APPVEYOR"] == "True"
@warn "WikiCorpus tests disabled on AppveyorCI."
else
# Do the tests
@testset "basic use" begin
Expand Down

0 comments on commit 114fa32

Please sign in to comment.