Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

Add broadcasting tests (CI not passed yet) #4

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
julia:
- 1.5
notifications:
email: false
git:
depth: 99999999

after_success:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
5 changes: 4 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ Lazy = "0.15"
julia = "1"

[extras]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
PooledArrays = "2dfb63ee-cc39-5dd5-95bd-886bf059d720"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
test = ["CategoricalArrays", "PooledArrays", "Random", "Test"]
4 changes: 4 additions & 0 deletions src/AbstractWrappedDataFrames.jl
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,9 @@ end
# return DataFrames.DataFrameRow(dataframe(sf), args...; kwargs...)
# end

# Fixes for the comprehensive tests below.

# -- broadcasting.jl --
Base.broadcastable(x::AbstractWrappedDataFrame) = dataframe(x)

end
Loading