Skip to content

Commit

Permalink
Use @testsets (#273)
Browse files Browse the repository at this point in the history
* Add devcontainer

* Run formatter

* Fix dockerfile

* Move things to testsets

* Test fixes

* Formatting

* Tweaks

* Use do block

* Fix test
  • Loading branch information
jeremiahpslewis authored Nov 14, 2021
1 parent 9724a17 commit f9c7d62
Show file tree
Hide file tree
Showing 4 changed files with 748 additions and 504 deletions.
9 changes: 9 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM julia:1.7

RUN apt-get update && apt-get install --no-install-recommends -y git && rm -rf /var/lib/apt/lists/*

WORKDIR /app

# COPY Project.toml .

# RUN julia -e 'using Pkg; Pkg.dev(""); Pkg.instantiate(); Pkg.precompile();'
8 changes: 8 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

{
"extensions": [
"julialang.language-julia"
],
"runArgs": ["--privileged"],
"dockerFile": "Dockerfile"
}
8 changes: 8 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[deps]
DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SQLite = "0aa819cd-b072-5ff4-a722-6bc24af294d9"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
WeakRefStrings = "ea10d353-3f73-51f8-a26c-33c1cb351aa5"
Loading

0 comments on commit f9c7d62

Please sign in to comment.